-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
See if VarAC's author might help with more Wine compatability #63
Comments
Interesting I haven't seen issues like this files stay where expected (I think I will also retest I got his email if needed new 6.6 alpha as well) Let me know if I can help - I have been using the app reasonably well some features he is just disabling via code for Linux like spellcheck and new voice-text stuff |
I was able to make progress because of your PR. Thank you! Yeah .conf & .ini files appear in the VarAC directory (in the |
Notes on extracting VarAC icon from .exe in Linux sudo apt-get install icoutils -y
wrestool -l ${HOME}'/.wine/drive_c/VarAC/VarAC.exe' | grep group_icon
#output: --type=14 --name=32512 --language=0 [type=group_icon offset=0x8b68b8 size=76]
wrestool -x -n '32512' ${HOME}'/.wine/drive_c/VarAC/VarAC.exe' > varac.ico 1b) Automatic with grep & variables (reference) sudo apt-get install icoutils -y
ICONNAME=$(wrestool -l ${HOME}'/.wine/drive_c/VarAC/VarAC.exe' | grep -o -P '(?<=--name=)(.*?)(?= --.*type=group_icon)')
wrestool -x -n "${ICONNAME}" ${HOME}'/.wine/drive_c/VarAC/VarAC.exe' > ${HOME}'/.wine/drive_c/VarAC/varac.ico'
wrestool -x --output=${HOME}'/.wine/drive_c/VarAC/varac.ico' -t14 ${HOME}'/.wine/drive_c/VarAC/VarAC.exe' EDIT: Linux doesn't like windows .ico files (prefers .png files) mkdir ${HOME}'/.wine/drive_c/VarAC/img/'
icotool -x -o ${HOME}'/.wine/drive_c/VarAC/img/' ${HOME}'/.wine/drive_c/VarAC/varac.ico' # https://manpages.ubuntu.com/manpages/impish/man1/icotool.1.html
VARACICON="$(basename $(find ${HOME}'/.wine/drive_c/VarAC/img/' -maxdepth 1 -type f -printf "%s\t%p\n" | sort -n | tail -1 | awk '{print $NF}'))" # https://unix.stackexchange.com/a/565995
echo $VARACICON No current way to do this with wine alone (reference) |
Now that I feel I have a better grasp of how VarAC functions and some of its bugs, I've made some requests on the forum |
FYI the latest alpha version I needed to add fonts to keep the errors away |
I did this to handle missing fonts in the corefont pack I have not tested much but there is currently an error for missing font this might correct https://github.com/SpudGunMan/segoe-ui-linux |
I might need to email the author with some more suggestions for Linux/Wine users:
sed
for users on first install, but I'm afraid this is kind of a messy solution that over time could randomly cause instabilities. <--- EDIT: I think that there are defaults, they just aren't set in the config file initially.[VARAHF_CONFIG]
section (which lists variables namedVarahfMainPath=
etc) which is set for VARA HF, but also for VARA FM (and probably Sat). Request different variables to store locations of the different modems.The text was updated successfully, but these errors were encountered: