diff --git a/dwm-6.2/config.def.h b/dwm-6.2/config.def.h index 98088cb..7caa19c 100644 --- a/dwm-6.2/config.def.h +++ b/dwm-6.2/config.def.h @@ -26,8 +26,8 @@ static const char *const autostart[] = { "redshift", NULL, "picom", "--experimental-backends", "--detect-rounded-corners", NULL, "setxkbmap","us,ru,fi",",winkeys","grp:alt_shift_toggle", NULL, - "xrandr", "--output", "HDMI1", "--above", "eDP1", NULL, "$HOME/.local/scripts/status/launch", NULL, + "enact", "--pos", "top", NULL, "pulseaudio","-k", NULL, NULL /* terminate */ }; @@ -37,11 +37,11 @@ static const char *tags[] = { "ﳎ ", " ", " ", " ", "", "", " static const char *tagsalt[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" }; /* launcher commands (They must be NULL terminated) */ -static const char* surf[] = { "surf", "duckduckgo.com", NULL }; +static const char* spotify[] = { "spotify", "spotify", NULL }; static const Launcher launchers[] = { /* command name to display */ - { surf, "surf" }, + { spotify, "spotify" }, }; @@ -52,7 +52,7 @@ static const Rule rules[] = { */ /* class instance title tags mask isfloating monitor scratch key */ { "Gimp", NULL, NULL, 0, 1, -1, 0 }, -{ "firefox", NULL, NULL, 0 << 2, 0, -1, 0 }, +{ "firefox", NULL, NULL, 1 << 1, 0, -1, 0 }, { NULL, NULL, "scratchpad", 0, 1, -1, 's' }, { NULL, NULL, "sp_volume", 0, 1, -1, 'v' }, diff --git a/dwm-6.2/config.h b/dwm-6.2/config.h index 98088cb..e36dbdc 100644 --- a/dwm-6.2/config.h +++ b/dwm-6.2/config.h @@ -26,8 +26,8 @@ static const char *const autostart[] = { "redshift", NULL, "picom", "--experimental-backends", "--detect-rounded-corners", NULL, "setxkbmap","us,ru,fi",",winkeys","grp:alt_shift_toggle", NULL, - "xrandr", "--output", "HDMI1", "--above", "eDP1", NULL, "$HOME/.local/scripts/status/launch", NULL, + "enact", "--pos", "top", NULL, "pulseaudio","-k", NULL, NULL /* terminate */ }; @@ -37,11 +37,11 @@ static const char *tags[] = { "ﳎ ", " ", " ", " ", "", "", " static const char *tagsalt[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" }; /* launcher commands (They must be NULL terminated) */ -static const char* surf[] = { "surf", "duckduckgo.com", NULL }; +static const char* spotify[] = { "spotify", "spotify", NULL }; static const Launcher launchers[] = { /* command name to display */ - { surf, "surf" }, + { spotify, "spotify" }, }; diff --git a/dwm-6.2/dwm b/dwm-6.2/dwm index a0f5596..bd6d97b 100755 Binary files a/dwm-6.2/dwm and b/dwm-6.2/dwm differ diff --git a/dwm-6.2/dwm.o b/dwm-6.2/dwm.o index bf79268..6f408fd 100644 Binary files a/dwm-6.2/dwm.o and b/dwm-6.2/dwm.o differ diff --git a/home/scripts/.local/scripts/status/launch b/home/scripts/.local/scripts/status/launch index d99cc93..de9ba5c 100755 --- a/home/scripts/.local/scripts/status/launch +++ b/home/scripts/.local/scripts/status/launch @@ -1,6 +1,6 @@ #!/bin/bash while true; do - xsetroot -name "$(./statusbar)" + xsetroot -name "$($HOME/.local/scripts/status/statusbar)" sleep 0.5 done &