From 31901ae8402994a3ced350eb62f2315df5b9cebd Mon Sep 17 00:00:00 2001 From: Biswakalyan Bhuyan Date: Fri, 9 Sep 2022 04:25:49 +0530 Subject: dwm --- config.h | 4 +++- drw.o | Bin 10328 -> 10328 bytes dwm | Bin 79880 -> 79960 bytes dwm.o | Bin 64056 -> 64200 bytes util.o | Bin 2216 -> 2216 bytes 5 files changed, 3 insertions(+), 1 deletion(-) diff --git a/config.h b/config.h index 9309092..3c2c157 100644 --- a/config.h +++ b/config.h @@ -30,7 +30,7 @@ static const Rule rules[] = { * WM_NAME(STRING) = title */ /* class instance title tags mask isfloating isterminal noswallow monitor */ - { "TelegramDesktop", NULL, NULL, 0, 1, 0, 0, -1 }, + { "telegram-desktop", NULL, NULL, 0, 1, 0, 0, -1 }, { "obs", NULL, NULL, 0, 1, 0, 0, -1 }, { "Lutris", NULL, NULL, 0, 1, 0, 0, -1 }, { "firefox", NULL, NULL, 1 << 2, 0, 0, -1, -1 }, @@ -64,6 +64,7 @@ static const Layout layouts[] = { /* commands */ static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */ static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont}; +static const char *passmenucmd[] = { "passmenu", NULL}; static const char *termcmd[] = { "st", NULL }; static const char *screenshot[] = {"scrot", "/home/genos/Pictures/Screenshots/%Y-%m-%d-%T-screenshot.png", NULL}; @@ -84,6 +85,7 @@ static Key keys[] = { { MODKEY|ShiftMask, XK_r, togglefloating, {0} }, { MODKEY, XK_t, setlayout, {0} }, { MODKEY, XK_space, spawn, {.v = dmenucmd } }, + { MODKEY, XK_p, spawn, {.v = passmenucmd } }, { MODKEY, XK_Return, spawn, {.v = termcmd } }, { MODKEY, XK_Tab, view, {0} }, { MODKEY, XK_0, view, {.ui = ~0 } }, diff --git a/drw.o b/drw.o index 955729d..7eb6491 100644 Binary files a/drw.o and b/drw.o differ diff --git a/dwm b/dwm index 3550c3e..5c4b7df 100755 Binary files a/dwm and b/dwm differ diff --git a/dwm.o b/dwm.o index 2f8273c..bdf9dbb 100644 Binary files a/dwm.o and b/dwm.o differ diff --git a/util.o b/util.o index b1b45c3..6ab501f 100644 Binary files a/util.o and b/util.o differ -- cgit v1.2.3-59-g8ed1b