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;
font: "Cozette 9";
show-icons: true;
terminal: "alacritty";
terminal: "urxvtc";
drun-display-format: "{icon} {name}";
display-drun: " > ";
location: 0;

View File

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

View File

@ -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};