some utilities cannot find yad [Solved]
some utilities cannot find yad
On both MX21KDE & MX23KDE, the two programs "dfh -g" & "isomount -g" fail, stating "GUI mode is not available without the /usr/bin/yad program". Yet yad is available at the specified location and working.
- dolphin_oracle
- Developer
- Posts: 22741
- Joined: Sun Dec 16, 2007 12:17 pm
Re: some utilities cannot find yad [Solved]
looking at the code, looks like a yad interface was never actually implemented.
http://www.youtube.com/runwiththedolphin
lenovo ThinkPad X1 Extreme Gen 4 - MX-23
FYI: mx "test" repo is not the same thing as debian testing repo.
Live system help document: https://mxlinux.org/wiki/help-antix-live-usb-system/
lenovo ThinkPad X1 Extreme Gen 4 - MX-23
FYI: mx "test" repo is not the same thing as debian testing repo.
Live system help document: https://mxlinux.org/wiki/help-antix-live-usb-system/
Re: some utilities cannot find yad
Yup, not working on antiX either. I thought it might be a KDE quirk. No biggie, both programs are still useful on the CLI.
Re: some utilities cannot find yad
You may try to make yad mode available with:baldyeti wrote: Sat Nov 23, 2024 6:29 pm On both MX21KDE & MX23KDE, the two programs "dfh -g" & "isomount -g" fail, stating "GUI mode is not available without the /usr/bin/yad program". Yet yad is available at the specified location and working.
Code: Select all
sudo sed -i.ORIG '/^\s*NO_YAD=true/s/^/#/' /usr/local/bin/isomount
Code: Select all
# NO_YAD=true
IIRC, one reason for the deactivation was the readability for some text elements in dark mode when using dark MX themes,
which would look like this for isomount when mounting, as shown in this example: As seen some pango color codes used by yad are not easy to read within dark themes.
The same in light mode would look ok, in light themes:
You do not have the required permissions to view the files attached to this post.
Re: some utilities cannot find yad
Alright fehlix, that works. And thanks for the explanation.