Compare commits

..

No commits in common. "770d29dc83d845122811c2c2dc2fcac07865960a81fe13f3652ffa057b7d4886" and "98a7c8a54477642cc96148b208da7fe30911caf95d9abb4a4576b23664090de0" have entirely different histories.

View File

@ -104,14 +104,12 @@ static char *colors[][ColCount] = {
static const char *const autostart[] = {
// "st", NULL,
"arrpc", NULL,
"dunst", NULL,
"sh", "/home/ganome/.local/bin/dwmbar", NULL,
"swaync", NULL,
"xrdb", "/home/ganome/.Xresources", NULL,
"nitrogen", "--restore", NULL,
NULL /* terminate */
};
static const char *scratchpadcmd[] = {"s", "ghostty", "--x11-instance-name=spterm", NULL};
static const char *scratchpadcmd[] = {"s", "kitty", "--name", "spterm", NULL};
/* Tags
* In a traditional dwm the number of tags in use can be changed simply by changing the number
@ -176,11 +174,8 @@ 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 << 3)
RULE(.class = "Gimp", .tags = 1 << 4)
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)
};