diff options
author | 2025-02-22 12:23:36 +0530 | |
---|---|---|
committer | 2025-02-22 12:23:36 +0530 | |
commit | 4963e58d34589af8547ec6ffc54d1c60991f1f91 (patch) | |
tree | 9e3bac1a404afaea8298a872ff768ee9d50ea6ef | |
parent | 1d469abe217af7726a904286088eaa49ce58cc79 (diff) | |
download | dwm-master.tar.gz dwm-master.tar.bz2 dwm-master.zip |
-rw-r--r-- | config.h | 44 | ||||
-rw-r--r-- | drw.o | bin | 10336 -> 10256 bytes | |||
-rwxr-xr-x | dwm | bin | 75112 -> 75032 bytes | |||
-rw-r--r-- | dwm.o | bin | 65128 -> 65080 bytes | |||
-rw-r--r-- | util.o | bin | 2224 -> 2224 bytes |
5 files changed, 22 insertions, 22 deletions
@@ -7,8 +7,8 @@ static const unsigned int snap = 32; /* snap pixel */ static const int swallowfloating = 0; /* 1 means swallow floating windows by default */ static const int showbar = 1; /* 0 means no bar */ static const int topbar = 1; /* 0 means bottom bar */ -static const char *fonts[] = { "JetBrains Mono:size=11", "JoyPixels:pixelsize=11:antialias=true:autohint=true"}; -static const char dmenufont[] = "JetBrains Mono:size=11"; +static const char *fonts[] = { "JetBrainsMono Nerd Font Mono:size=11", "JoyPixels:pixelsize=11:antialias=true:autohint=true"}; +static const char dmenufont[] = "JetBrainsMono Nerd Font Mono:size=11"; static char normbgcolor[] = "#222222"; static char normbordercolor[] = "#444444"; static char normfgcolor[] = "#bbbbbb"; @@ -22,7 +22,7 @@ static char *colors[][3] = { }; /* tagging */ -static const char *tags[] = { "", "", "", "", "", "", "", "", "" }; +static const char *tags[] = { "", "", "", "", "", "", "", "", "" }; static const Rule rules[] = { /* xprop(1): @@ -30,16 +30,16 @@ static const Rule rules[] = { * WM_NAME(STRING) = title */ /* class instance title tags mask isfloating isterminal noswallow monitor */ - { "Telegram", NULL, NULL, 1 << 3, 1, 0, -1, -1 }, - { "obs", NULL, NULL, 1 << 1, 1, 0, -1, -1 }, + { "Telegram", NULL, NULL, 1 << 3, 1, 0, -1, -1 }, + { "obs", NULL, NULL, 1 << 1, 1, 0, -1, -1 }, { "SimpleScreenRecorder", NULL, NULL, 1 << 7, 1, 0, -1, -1 }, - { "Lutris", NULL, NULL, 0, 1, 0, 0, -1 }, - { "Spotify", NULL, NULL, 1 << 5, 1, 0, -1, -1 }, - { "Emacs", NULL, NULL, 1 << 1, 0, 0, -1, -1 }, - { "Brave", NULL, NULL, 1 << 2, 0, 0, -1, -1 }, - { "Brave", NULL, NULL, 1 << 2, 0, 0, -1, -1 }, - { "St", NULL, NULL, 0, 0, 1, 0, -1 }, - { NULL, NULL, "Event Tester", 0, 0, 0, 1, -1 }, /* xev */ + { "Lutris", NULL, NULL, 0, 1, 0, 0, -1 }, + { "Spotify", NULL, NULL, 1 << 5, 1, 0, -1, -1 }, + { "Emacs", NULL, NULL, 1 << 1, 0, 0, -1, -1 }, + { "Brave", NULL, NULL, 1 << 2, 0, 0, -1, -1 }, + { "firefox", NULL, NULL, 1 << 2, 0, 0, -1, -1 }, + { "St", NULL, NULL, 0, 0, 1, 0, -1 }, + { NULL, NULL, "Event Tester", 0, 0, 0, 1, -1 }, /* xev */ }; /* layout(s) */ @@ -81,20 +81,20 @@ static Key keys[] = { { MODKEY, XK_j, focusstack, {.i = +1 } }, { MODKEY, XK_h, setmfact, {.f = -0.05} }, { MODKEY, XK_g, togglebar, {0} }, - { MODKEY, XK_f, zoom, {0} }, + { MODKEY, XK_f, zoom, {0} }, { MODKEY, XK_d, incnmaster, {.i = -1 } }, { MODKEY, XK_s, incnmaster, {.i = +1 } }, - { MODKEY, XK_q, killclient, {0} }, + { MODKEY, XK_q, killclient, {0} }, { MODKEY, XK_w, setlayout, {.v = &layouts[0]} }, { MODKEY, XK_e, setlayout, {.v = &layouts[1]} }, { MODKEY, XK_r, setlayout, {.v = &layouts[2]} }, { MODKEY|ShiftMask, XK_r, togglefloating, {0} }, { MODKEY, XK_t, setlayout, {0} }, { MODKEY, XK_space, spawn, {.v = dmenucmd } }, - { MODKEY|ShiftMask, XK_w, spawn, {.v = wallcmd } }, - { MODKEY, XK_p, spawn, {.v = passmenucmd } }, - { MODKEY, XK_Return, spawn, {.v = termcmd } }, - { MODKEY, XK_b, spawn, {.v = browser } }, + { MODKEY|ShiftMask, XK_w, spawn, {.v = wallcmd } }, + { MODKEY, XK_p, spawn, {.v = passmenucmd } }, + { MODKEY, XK_Return, spawn, {.v = termcmd } }, + { MODKEY, XK_b, spawn, {.v = browser } }, { MODKEY, XK_Tab, view, {0} }, { MODKEY, XK_0, view, {.ui = ~0 } }, { MODKEY|ShiftMask, XK_0, tag, {.ui = ~0 } }, @@ -102,9 +102,9 @@ static Key keys[] = { { MODKEY, XK_period, focusmon, {.i = +1 } }, { MODKEY|ShiftMask, XK_comma, tagmon, {.i = -1 } }, { MODKEY|ShiftMask, XK_period, tagmon, {.i = +1 } }, - { MODKEY, XK_minus, setgaps, {.i = -1 } }, - { MODKEY, XK_equal, setgaps, {.i = +1 } }, - { MODKEY|ShiftMask, XK_equal, setgaps, {.i = 0 } }, + { MODKEY, XK_minus, setgaps, {.i = -1 } }, + { MODKEY, XK_equal, setgaps, {.i = +1 } }, + { MODKEY|ShiftMask, XK_equal, setgaps, {.i = 0 } }, { MODKEY, XK_F5, xrdb, {.v = NULL } }, TAGKEYS( XK_1, 0) TAGKEYS( XK_2, 1) @@ -115,7 +115,7 @@ static Key keys[] = { TAGKEYS( XK_7, 6) TAGKEYS( XK_8, 7) TAGKEYS( XK_9, 8) - { MODKEY|ShiftMask, XK_q, quit, {0} }, + { MODKEY|ShiftMask, XK_q, quit, {0} }, }; /* button definitions */ Binary files differBinary files differBinary files differBinary files differ |