diff --git a/.config/rofi/config.rasi b/.config/rofi/config.rasi index a1f8ce4..d02b123 100644 --- a/.config/rofi/config.rasi +++ b/.config/rofi/config.rasi @@ -3,7 +3,7 @@ configuration{ lines: 10; font: "Cozette 9"; show-icons: true; - terminal: "alacritty"; + terminal: "urxvtc"; drun-display-format: "{icon} {name}"; display-drun: " > "; location: 0; diff --git a/.dwm/autostart b/.dwm/autostart index 786f36e..e9ade1c 100755 --- a/.dwm/autostart +++ b/.dwm/autostart @@ -6,7 +6,7 @@ dunst & flameshot & volctl & nvidia-settings -l & -picom --config ~/.config/picom.conf & +urxvtd -q & ~/.dwm/bar/./bar.sh & dwm diff --git a/lemondwm/config.def.h b/lemondwm/config.def.h index a20a5f9..82aa94d 100644 --- a/lemondwm/config.def.h +++ b/lemondwm/config.def.h @@ -102,7 +102,7 @@ static const Layout layouts[] = { /* commands */ static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */ static const char *dmenucmd[] = {"dmenu_run", NULL}; -static const char *termcmd[] = {"alacritty", NULL}; // change this to your term +static const char *termcmd[] = {"urxvtc", NULL}; // change this to your term static const char *rofi[] = {"rofi", "-show", "drun", NULL}; static const char *togglepicom[] = {"/bin/bash", "-c", "pidcom=$(pidof picom);if [ -z \"$pidcom\" ];then picom --config ~/.config/picom.conf -b;else kill \"$pidcom\";fi", NULL};