Actually I liked rxvt better tbh

This commit is contained in:
lemon-sh 2021-11-29 17:54:00 +01:00
parent 64a45da73c
commit 1a5bbfe81e
3 changed files with 3 additions and 3 deletions

View file

@ -3,7 +3,7 @@ configuration{
lines: 10; lines: 10;
font: "Cozette 9"; font: "Cozette 9";
show-icons: true; show-icons: true;
terminal: "alacritty"; terminal: "urxvtc";
drun-display-format: "{icon} {name}"; drun-display-format: "{icon} {name}";
display-drun: " > "; display-drun: " > ";
location: 0; location: 0;

View file

@ -6,7 +6,7 @@ dunst &
flameshot & flameshot &
volctl & volctl &
nvidia-settings -l & nvidia-settings -l &
picom --config ~/.config/picom.conf & urxvtd -q &
~/.dwm/bar/./bar.sh & ~/.dwm/bar/./bar.sh &
dwm dwm

View file

@ -102,7 +102,7 @@ static const Layout layouts[] = {
/* commands */ /* commands */
static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */ static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */
static const char *dmenucmd[] = {"dmenu_run", NULL}; 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 *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}; 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};