You are not logged in.
What commands would you put in a script to reload conkys, openbox and tint2 within the same session? (I know where these are in the menu, so not looking for that).
Last edited by redsearch (2017-03-03 14:55:45)
Offline
What commands would you put in a script to reload conkys, openbox and tint2 within the same session? (I know where these are in the menu, so not looking for that).
Generic...
openbox --restart
killall conky && conky [ -c /path/to conkyrc ] &
killall tint2 && tint2 [ -c /path/to tint2rc ] &
Bunsenlabs specific...
openbox --restart
killall conky && bl-conky-session
bl-tint2restart
Don't dismiss the menu - the menu.xml often gives the commands which are being used.
Be Excellent to Each Other...
The Bunsenlabs Lithium Desktop » Here
FORUM RULES and posting guidelines «» Help page for forum post formatting
Artwork on DeviantArt «» BunsenLabs on DeviantArt
Offline
Expanding on @BLenderer's post: In general, if BL offers an action from the menu or keyboard shortcuts, you can find the related command in ~/.config/openbox/menu.xml or ~/.config/openbox/rc.xml (save for OB intrinsic actions).
Offline
A little less drastic, for tint2:
killall -SIGUSR1 tint2
Offline
Likewise for conky (per the man page):
killall -SIGUSR1 conky
Offline
touch /path/to/conky/config
edit:
i'm assuming you have a REASON to restart those apps.
assuming the REASON is that you edited one of the config files, saving that file amounts to the same as above command.
Last edited by ohnonot (2017-03-04 09:00:24)
Offline