Help for MX Fluxbox
When asking for help, use Quick System Info from MX Tools. It will be properly formatted using the following steps.
1. Click on Quick System Info in MX Tools
2. Right click in your post and paste.
siamhie wrote: ↑Mon Nov 04, 2024 11:17 am
Since I started using dock-dualum-tint2rc as my app launcher, the weather wouldn't show up (after booting up) unless I either log out and log back into the desktop or disable then re-enable the dock.
quickshot_1.png
I found that if I edit the executors command line and add a sleep command before the curl command, then the weather is displayed after booting up.
That's interesting...
I know two cases, when the weather widget does not show.
1. No Internet connection or bad quality of the connection.
2. The number of queries exceeded and you have to wait for the wttr.in server gets its permissions back to share the information from other weather services.
In the first case the widget will appear after connecting or improving the connection quality. If there is a delay between your logging in and connecting to the Internet you have to wait about 10 minutes for the widget to refresh automatically.
@kobaian I think the problem is that curl runs it's command before the toolbar has completely loaded. I tried it with sleep 1 and the weather still won't show.
2. The number of queries exceeded and you have to wait for the wttr.in server gets its permissions back to share the information from other weather services.
I get that sometimes when I left/right click on the weather report. I'll end up with a blank terminal window.
This is my Fluxbox . There are many others like it, but this one is mine. My Fluxbox is my best friend. It is my life.
I must master it as I must master my life. Without me, my Fluxbox is useless. Without my Fluxbox, I am useless.
siamhie wrote: ↑Mon Nov 04, 2024 11:17 am
Since I started using dock-dualum-tint2rc as my app launcher, the weather wouldn't show up (after booting up) unless I either log out and log back into the desktop or disable then re-enable the dock.
quickshot_1.png
I found that if I edit the executors command line and add a sleep command before the curl command, then the weather is displayed after booting up.
That's interesting...
I know two cases, when the weather widget does not show.
1. No Internet connection or bad quality of the connection.
2. The number of queries exceeded and you have to wait for the wttr.in server gets its permissions back to share the information from other weather services.
In the first case the widget will appear after connecting or improving the connection quality. If there is a delay between your logging in and connecting to the Internet you have to wait about 10 minutes for the widget to refresh automatically.
@kobaian I think the problem is that curl runs it's command before the toolbar has completely loaded. I tried it with sleep 1 and the weather still won't show.
2. The number of queries exceeded and you have to wait for the wttr.in server gets its permissions back to share the information from other weather services.
I get that sometimes when I left/right click on the weather report. I'll end up with a blank terminal window.
On my own customized tint2 panel I use another version of the weather widget. The executor's command:
#!/bin/bash
wtr=`curl -s wttr.in/?format=1 | awk '{print $1 " " $2}'`
if [[ $wtr != Unknown* ]] ; then
echo "$wtr"
else
echo "😕 Oups!"
fi
It narrows the gap between the weather icon and temperature value and prevents displaying the annoying error message from the wttr.in server on the panel.
It narrows the gap between the weather icon and temperature value
@kobaian Do you know if this would work in tint2's executor line?
This is my Fluxbox . There are many others like it, but this one is mine. My Fluxbox is my best friend. It is my life.
I must master it as I must master my life. Without me, my Fluxbox is useless. Without my Fluxbox, I am useless.
hello
mxfb-menu-generator
AVLmxe did add a Wine Category.
Without Category Wine, the Wine apps are in Utility, mostly Other.
Also added Category Education. Pointed Category Science into Education.
Adding the two Categories count is up to 1..18 eighteen.
Works on mxfluxbox iso not showing empty categories; with those "remove empty" still commented out.
Thanks for taking paren() out of names. vivaldi (snapshot) now does not tangle the fluxbox menu. That was always a manual fix.
You do not have the required permissions to view the files attached to this post.
It narrows the gap between the weather icon and temperature value
@kobaian Do you know if this would work in tint2's executor line?
I don't know. You can try to precede it with the bash -c command, but I'm not sure what is the correct syntax when it comes to all the brackets and quotation marks.
to cater for spaces in translated title.
Perhaps also do reload conky after "fluxbox-remote restart", to avoid visual artifacts,
propably send SIGUSR1 maybe enough to reload.
2p's
It narrows the gap between the weather icon and temperature value
@kobaian Do you know if this would work in tint2's executor line?
I don't know. You can try to precede it with the bash -c command, but I'm not sure what is the correct syntax when it comes to all the brackets and quotation marks.
@kobaian Works in terminal. I'll try it in tint2. wttr has been spotty lately for me.
wttr.jpg
You do not have the required permissions to view the files attached to this post.
This is my Fluxbox . There are many others like it, but this one is mine. My Fluxbox is my best friend. It is my life.
I must master it as I must master my life. Without me, my Fluxbox is useless. Without my Fluxbox, I am useless.