change autostart once again
ci/woodpecker/tag/woodpecker Pipeline failed Details

This commit is contained in:
Luca Bilke 2024-02-04 12:48:49 +01:00
parent df2fe1ccf6
commit b5761c2d45
No known key found for this signature in database
GPG Key ID: AD6630D0A1E650AC
1 changed files with 12 additions and 1 deletions

View File

@ -137,7 +137,18 @@ static const char *layoutmenu_cmd = "xmenulayout";
// static const char *layoutdmenu = "$HOME/.local/libexec/dwm/dmenulayout"; // TODO: Patch layoutmenu to accept shell commands // static const char *layoutdmenu = "$HOME/.local/libexec/dwm/dmenulayout"; // TODO: Patch layoutmenu to accept shell commands
static const char *const autostart[] = { static const char *const autostart[] = {
"sh", "-cm", "run-parts $HOME/.local/libexec/dwm/autostart.d", NULL, "sh", "-c", "run-parts $HOME/.local/libexec/dwm/autorun.d", NULL,
"pipewire", NULL,
"wireplumber", NULL,
"pipewire", "-c", "pipewire-pulse.conf", NULL,
"dunst", NULL,
"unclutter", "-noevents", "-idle", "3", NULL,
"lf", "-server", NULL,
"sh", "-c", "runsvdir $SVDIR", NULL,
"sh", "-c", "env PATH=\"$HOME/.local/libexec/statusbar:$PATH\" dwmblocks", NULL,
"sh", "-c", "$HOME/.local/libexec/dwm/locker", NULL
"sh", "-c", "gpg-agent --homedir $XDG_CONFIG_HOME/gnupg --use-standard-socket --server", NULL
"syncthingtray", NULL
NULL NULL
}; };