diff options
Diffstat (limited to 'config.h')
| -rwxr-xr-x[-rw-r--r--] | config.h | 28 |
1 files changed, 15 insertions, 13 deletions
@@ -30,20 +30,21 @@ static const Rule rules[] = { * WM_NAME(STRING) = title */ /* class instance title tags mask iscentered isfloating isterminal noswallow monitor */ - { "Gimp", NULL, NULL, 0, 0, 1, 0, 0, -1 }, { "Librewolf", NULL, NULL, 1 << 8, 0, 0, 0, 0, -1 }, - { "Ghostty", NULL, NULL, 0, 0, 0, 1, 0, -1 }, - { "Orage", NULL, NULL, 0, 0, 1, 0, 1, -1 }, + { "Gimp", NULL, NULL, 0, 0, 1, 0, 0, -1 }, + { "Kitty", NULL, NULL, 0, 0, 0, 1, 0, -1 }, { "St", NULL, NULL, 0, 1, 1, 1, 1, -1 }, { "Galculator", NULL, NULL, 0, 1, 1, 0, 1, -1 }, - { "Yad", NULL, NULL, 0, 0, 1, 0, 1, -1 }, + { "Nsxiv", NULL, NULL, 0, 1, 1, 0, 1, -1 }, + { "mpv", NULL, NULL, 0, 1, 1, 0, 1, -1 }, + { "qpdfview", NULL, NULL, 0, 1, 1, 0, 1, -1 }, { NULL, NULL, "Event Tester", 0, 0, 0, 0, 1, -1 }, /* xev */ }; /* layout(s) */ static const float mfact = 0.55; /* factor of master area size [0.05..0.95] */ static const int nmaster = 1; /* number of clients in master area */ -static const int resizehints = 1; /* 1 means respect size hints in tiled resizals */ +static const int resizehints = 0; /* 1 means respect size hints in tiled resizals */ static const int lockfullscreen = 1; /* 1 will force focus on the fullscreen window */ static const Layout layouts[] = { @@ -70,12 +71,12 @@ 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, "-nb", normbgcolor, "-nf", normfgcolor, "-sb", selbgcolor, "-sf", selfgcolor, NULL }; -static const char *termcmd[] = { "ghostty", NULL }; -static const char *webcmd[] = { "librewolf", NULL }; -static const char *menupower[] = { "dmenu-power", NULL }; -static const char *menuaudio[] = { "dmenu-audio", NULL }; +static const char *termcmd[] = { "dwm-terminal", NULL }; +static const char *webcmd[] = { "dwm-browser", NULL }; +static const char *menupower[] = { "dmenu-power", NULL }; +static const char *menuaudio[] = { "dmenu-audio", NULL }; static const char *menusystem[] = { "dmenu-system", NULL }; -static const char *scratch[] = { "st", "-g", "120x34", NULL }; +static const char *scratch[] = { "st", "-g", "200x34", NULL }; static const Key keys[] = { /* modifier key function argument */ @@ -120,9 +121,10 @@ static const Key keys[] = { { 0, XF86XK_AudioLowerVolume, spawn, SHCMD("dwm-audio volquieter") }, { 0, XF86XK_AudioRaiseVolume, spawn, SHCMD("dwm-audio vollouder") }, { 0, XF86XK_AudioMicMute, spawn, SHCMD("dwm-audio mictoggle") }, - { 0, XF86XK_MonBrightnessDown, spawn, SHCMD("brightnessctl set 10%-") }, - { 0, XF86XK_MonBrightnessUp, spawn, SHCMD("brightnessctl set 10%+") }, - { 0, XF86XK_Launch1, spawn, SHCMD("dmenu-power") }, + { 0, XF86XK_MonBrightnessDown, spawn, SHCMD("dwm-brightness -") }, + { 0, XF86XK_MonBrightnessUp, spawn, SHCMD("dwm-brightness +") }, + { 0, XF86XK_Bluetooth, spawn, SHCMD("rfkill toggle bluetooth") }, + { 0, XF86XK_WLAN, spawn, SHCMD("rfkill toggle wlan") }, { 0, XK_Print, spawn, SHCMD("dwm-screenshot") }, { 0, XK_Scroll_Lock, spawn, SHCMD("dwm-scale") }, TAGKEYS( XK_ampersand, 0) |
