changes to a module and autostart

This commit is contained in:
speedie 2022-12-02 16:29:09 +01:00
parent 47bc71afd2
commit 69881414de
2 changed files with 18 additions and 15 deletions

View file

@ -13,12 +13,15 @@ static const char *autostart[] = {
/* Run the built in status bar */ /* Run the built in status bar */
shell, "-c", "pkill status; status &", NULL, shell, "-c", "pkill status; status &", NULL,
/* Run the wallpaper tool if it exists */
shell, "-c", "command -v speedwm-swal > /dev/null && $HOME/.config/speedwm/swal/swal_wm && command -v libspeedwm > /dev/null && libspeedwm --perform core_wm_reload", NULL,
/* Autostart script, if it exists */ /* Autostart script, if it exists */
shell, "-c", "$HOME/.config/speedwm/autostart.sh", NULL, shell, "-c", "$HOME/.config/speedwm/autostart.sh", NULL,
/* Run the wallpaper tool if it exists */
shell, "-c", "command -v speedwm-swal > /dev/null && $HOME/.config/speedwm/swal/swal_wm", NULL,
/* Reload colors */
shell, "-c", "command -v libspeedwm > /dev/null && libspeedwm --perform core_wm_reload; speedwm -s 'Loading'", NULL,
NULL NULL
}; };