Firestarter: Move some stuff into .xinitrc

HERESY
This commit is contained in:
Salt 2020-06-29 10:06:21 -05:00
parent c3b6ee1b31
commit 8362690f26
2 changed files with 6 additions and 2 deletions

View File

@ -3,7 +3,5 @@
:
# 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/salt/.config}/conky/gen.sh" ]
sleep 5 && "${XDG_CONFIG_HOME:-/home/salt/.config}/conky/gen.sh" && conky
command -v conky && [ -r "${XDG_CONFIG_HOME:-/home/salt/.config}/conky/conky.conf" ]
sleep 5 && conky

View File

@ -1,5 +1,11 @@
#!/bin/bash
if [ -x "$HOME/.wpgen/wpgen" ]; then
"$HOME/.wpgen/wpgen"
fi
if [ -x "$HOME/.config/conky/gen.sh" ]; then
"$HOME/.config/conky/gen.sh"
fi
if [ -x "$HOME/.firestarter/firestarter" ]; then
export FS_DIEONWM=true
exec "$HOME/.firestarter/firestarter" -vvv | tee .firestarter.log