Move comments around, add note about xrdb

This commit is contained in:
Salt 2019-06-22 02:33:17 -05:00
parent 33e4c82572
commit 15fda94388
2 changed files with 4 additions and 2 deletions

View File

@ -59,6 +59,8 @@ Firestarter, in addition to spawning the programs in the default configs, also i
* xhost: Firestarter will open up the current session to other sessions by your user, allowing you to open a TTY and spawn your WM back in if you have to. * xhost: Firestarter will open up the current session to other sessions by your user, allowing you to open a TTY and spawn your WM back in if you have to.
* xrdb: Xresources are loaded in.
* xset: Firestarter will disable that annoying goddamn X bell. Re-enable it in `.firestarterrc` if you enjoy pain. * xset: Firestarter will disable that annoying goddamn X bell. Re-enable it in `.firestarterrc` if you enjoy pain.
## Exit Codes ## Exit Codes

View File

@ -218,12 +218,12 @@ command -v gnome-settings-daemon
gnome-settings-daemon gnome-settings-daemon
EOF EOF
# System statistics glances # System statistics glances
# Note: the dumb sleep hack is because Conky crashes with window_type override if the WM hasn't loaded yet
# This gives the Wm ample time to load up
cat << EOF > "$_configdir/stat-glances" cat << EOF > "$_configdir/stat-glances"
#.fsdefaults #.fsdefaults
[ -z "\$DISPLAY" ] [ -z "\$DISPLAY" ]
: :
# Note: the dumb sleep hack is because Conky crashes with window_type override if the WM hasn't loaded yet
# This gives the Wm ample time to load up
command -v conky && [ -r "\${XDG_CONFIG_HOME:-$HOME/.config}/conky/conky.conf" ] command -v conky && [ -r "\${XDG_CONFIG_HOME:-$HOME/.config}/conky/conky.conf" ]
sleep 5 && conky sleep 5 && conky
EOF EOF