Compare commits

...

2 Commits

Author SHA256 Message Date
ganome
770d29dc83
added dunst notification daemon and switched to ghostty terminal 2025-03-16 08:52:48 -06:00
ganome
4c338c6849
Added window rules for vivaldi, vesktop, nemo and others 2025-03-15 23:08:27 -06:00

View File

@ -104,12 +104,14 @@ static char *colors[][ColCount] = {
static const char *const autostart[] = {
// "st", NULL,
"arrpc", NULL,
"swaync", NULL,
"dunst", NULL,
"sh", "/home/ganome/.local/bin/dwmbar", NULL,
"xrdb", "/home/ganome/.Xresources", NULL,
"nitrogen", "--restore", NULL,
NULL /* terminate */
};
static const char *scratchpadcmd[] = {"s", "kitty", "--name", "spterm", NULL};
static const char *scratchpadcmd[] = {"s", "ghostty", "--x11-instance-name=spterm", NULL};
/* Tags
* In a traditional dwm the number of tags in use can be changed simply by changing the number
@ -174,8 +176,11 @@ static const Rule rules[] = {
RULE(.wintype = WTYPE "UTILITY", .isfloating = 1)
RULE(.wintype = WTYPE "TOOLBAR", .isfloating = 1)
RULE(.wintype = WTYPE "SPLASH", .isfloating = 1)
RULE(.class = "Gimp", .tags = 1 << 4)
RULE(.class = "Gimp", .tags = 1 << 3)
RULE(.class = "Vivaldi-stable", .tags = 1 << 2)
RULE(.class = "Nemo", .tags = 1 << 6)
RULE(.class = "quassel", .tags = 1 << 8)
RULE(.class = "vesktop", .tags = 1 << 3, .monitor = 1)
RULE(.instance = "spterm", .scratchkey = 's', .isfloating = 1)
};