2024-07-29 19:33:52 +02:00
/* See LICENSE file for copyright and license details. */
/* appearance */
2024-07-30 17:06:36 +02:00
static const unsigned int borderpx = 6 ; /* border pixel of windows */
static const unsigned int gappx = 6 ;
static const unsigned int snap = 32 ; /* snap pixel */
2024-07-29 22:18:47 +02:00
static const int showbar = 1 ; /* 0 means no bar */
2024-07-30 17:06:36 +02:00
static const int topbar = 1 ; /* 0 means bottom bar */
static const char * fonts [ ] = { " Mononoki Nerd Font:size=16 " } ;
static const char dmenufont [ ] = " Mononoki Nerd Font:size=16 " ;
2024-07-29 22:18:47 +02:00
static unsigned int baralpha = 0xd0 ;
2024-07-30 17:06:36 +02:00
static unsigned int borderalpha = OPAQUE ;
static const char col_bg [ ] = " #222222 " ;
static const char col_fg [ ] = " #cccccc " ;
static const char col_fga [ ] = " #eeeeee " ;
2024-07-30 17:54:28 +02:00
static const char col_bga [ ] = " #318d56 " ; //#3fb36d
2024-07-30 17:06:36 +02:00
static const char * colors [ ] [ 3 ] = {
2024-07-29 22:18:47 +02:00
/* fg bg border */
2024-07-30 17:06:36 +02:00
[ SchemeNorm ] = { col_fg , col_bg , col_bg } ,
[ SchemeSel ] = { col_fga , col_bga , col_bga } ,
2024-07-29 19:33:52 +02:00
} ;
/* tagging */
2024-07-30 17:54:28 +02:00
static const char * tags [ ] = { " " , " " , " " , " " , " 5 " , " 6 " , " 7 " , " 8 " , " 9 " } ;
2024-07-29 19:33:52 +02:00
static const Rule rules [ ] = {
/* xprop(1):
* WM_CLASS ( STRING ) = instance , class
* WM_NAME ( STRING ) = title
*/
2024-07-30 17:06:36 +02:00
/* class instance title tags mask isfloating monitor */
2024-07-31 12:07:04 +02:00
{ " chromium-browser " , NULL , NULL , 0 , 0 , - 1 } ,
{ " jellyfinmediaplayer " , NULL , NULL , 0 , 0 , - 1 } ,
2024-07-30 17:54:28 +02:00
{ " calcifer " , NULL , NULL , 1 < < 2 , 0 , - 1 } ,
{ " jiji " , NULL , NULL , 1 < < 3 , 0 , - 1 } ,
{ " discord " , NULL , NULL , 1 < < 3 , 0 , - 1 } ,
2024-07-29 19:33:52 +02:00
} ;
/* layout(s) */
2024-07-29 22:18:47 +02:00
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 */
2024-07-29 19:33:52 +02:00
static const int lockfullscreen = 1 ; /* 1 will force focus on the fullscreen window */
static const Layout layouts [ ] = {
2024-07-29 22:18:47 +02:00
/* symbol arrange function */
2024-07-30 17:54:28 +02:00
{ " " , tile } , /* first entry is default */
{ " " , monocle } ,
2024-07-29 19:33:52 +02:00
} ;
/* key definitions */
2024-07-29 23:30:41 +02:00
# define MODKEY Mod4Mask
2024-07-29 19:33:52 +02:00
# define TAGKEYS(KEY,TAG) \
2024-07-30 17:06:36 +02:00
{ MODKEY , KEY , view , { . ui = 1 < < TAG } } , \
{ MODKEY | ControlMask , KEY , toggleview , { . ui = 1 < < TAG } } , \
{ MODKEY | ShiftMask , KEY , tag , { . ui = 1 < < TAG } } , \
{ MODKEY | ControlMask | ShiftMask , KEY , toggletag , { . ui = 1 < < TAG } } ,
2024-07-29 19:33:52 +02:00
/* helper for spawning shell commands in the pre dwm-5.0 fashion */
# define SHCMD(cmd) { .v = (const char*[]){ " / bin / sh", "-c", cmd, NULL } }
/* commands */
2024-07-30 17:09:44 +02:00
static char dmenumon [ 2 ] = " 0 " ; /* component of dmenucmd, manipulated in spawn() */
2024-07-30 17:06:36 +02:00
static const char * dmenucmd [ ] = { " /home/penwing/nixos/scripts/dmenu_launcher.sh " , NULL } ;
static const char * termcmd [ ] = { " kodama " , NULL } ;
2024-07-30 17:54:28 +02:00
static const char * chromium [ ] = { " chromium " , " --wm-window-animations-disabled " , " --animation-duration-scale=0 " , NULL } ;
2024-07-30 17:06:36 +02:00
2024-08-02 15:03:30 +02:00
# include "movestack.c"
2024-07-29 19:33:52 +02:00
static const Key keys [ ] = {
2024-07-30 17:06:36 +02:00
/* modifier key function argument */
{ MODKEY , XK_d , spawn , { . v = dmenucmd } } ,
2024-07-31 12:23:30 +02:00
{ MODKEY , XK_Return , spawn , { . v = termcmd } } ,
2024-07-30 17:06:36 +02:00
{ MODKEY , XK_i , spawn , { . v = chromium } } ,
2024-07-31 12:23:30 +02:00
{ MODKEY , XK_space , setlayout , { 0 } } ,
2024-07-31 12:07:04 +02:00
{ MODKEY , XK_f , togglefullscreen , { 0 } } ,
2024-08-01 12:02:59 +02:00
{ MODKEY , XK_Down , focusstack , { . i = + 1 } } ,
{ MODKEY , XK_Up , focusstack , { . i = - 1 } } ,
2024-08-02 15:03:30 +02:00
{ MODKEY | ShiftMask , XK_Down , movestack , { . i = + 1 } } ,
{ MODKEY | ShiftMask , XK_Up , movestack , { . i = - 1 } } ,
2024-08-05 14:24:05 +02:00
{ MODKEY | ShiftMask , XK_Left , setmfact , { . f = - 0.05 } } ,
{ MODKEY | ShiftMask , XK_Right , setmfact , { . f = + 0.05 } } ,
2024-07-31 12:07:04 +02:00
{ MODKEY , XK_F12 , incnmaster , { . i = + 1 } } ,
{ MODKEY , XK_F11 , incnmaster , { . i = - 1 } } ,
2024-07-31 12:23:30 +02:00
{ MODKEY , XK_exclam , zoom , { 0 } } ,
2024-07-30 17:06:36 +02:00
{ MODKEY | ShiftMask , XK_a , killclient , { 0 } } ,
{ MODKEY , XK_Tab , view , { . ui = ~ 0 } } ,
{ MODKEY | ShiftMask , XK_Tab , tag , { . ui = ~ 0 } } ,
{ MODKEY , XK_comma , focusmon , { . i = - 1 } } ,
2024-07-31 12:07:04 +02:00
{ MODKEY , XK_semicolon , focusmon , { . i = + 1 } } ,
2024-07-30 17:06:36 +02:00
{ MODKEY | ShiftMask , XK_comma , tagmon , { . i = - 1 } } ,
2024-07-31 12:07:04 +02:00
{ MODKEY | ShiftMask , XK_semicolon , tagmon , { . i = + 1 } } ,
2024-07-30 17:06:36 +02:00
{ MODKEY | ShiftMask , XK_q , quit , { 0 } } ,
2024-07-31 12:23:30 +02:00
{ MODKEY , XK_F1 , spawn , SHCMD ( " pamixer -t && notify-send -u normal -a \" volume \" \" $(pamixer --get-volume-human) \" " ) } ,
{ MODKEY , XK_F2 , spawn , SHCMD ( " pamixer -d 5 -u && notify-send -u normal -a \" volume \" \" $(pamixer --get-volume-human) \" " ) } ,
{ MODKEY , XK_F3 , spawn , SHCMD ( " pamixer -i 5 -u && notify-send -u normal -a \" volume \" \" $(pamixer --get-volume-human) \" " ) } ,
2024-07-31 12:07:04 +02:00
{ MODKEY , XK_F4 , spawn , SHCMD ( " brightnessctl -d \" amdgpu_bl1 \" set 10%- && notify-send -u normal -a \" brightness \" \" $(brightnessctl -d 'amdgpu_bl1' get) \" " ) } ,
{ MODKEY , XK_F5 , spawn , SHCMD ( " brightnessctl -d \" amdgpu_bl1 \" set +10% && notify-send -u normal -a \" brightness \" \" $(brightnessctl -d 'amdgpu_bl1' get) \" " ) } ,
{ MODKEY , XK_F6 , spawn , SHCMD ( " ~/nixos/scripts/usb_guest.sh " ) } ,
{ MODKEY , XK_F7 , spawn , SHCMD ( " ~/nixos/scripts/susuwatari/client.sh " ) } ,
{ MODKEY , XK_F8 , spawn , SHCMD ( " ~/nixos/scripts/hdmi_paint.sh " ) } ,
{ MODKEY , XK_F9 , spawn , SHCMD ( " ~/nixos/scripts/screen_sleep.sh " ) } ,
2024-08-05 14:24:05 +02:00
{ MODKEY , XK_Print , spawn , SHCMD ( " ~/nixos/scripts/screenshot.sh " ) } ,
2024-08-06 12:09:02 +02:00
{ MODKEY , XK_t , spawn , SHCMD ( " ~/nixos/scripts/task_manager.sh " ) } ,
{ MODKEY , XK_n , spawn , SHCMD ( " ~/nixos/scripts/notes.sh " ) } ,
2024-08-06 12:18:54 +02:00
{ MODKEY , XK_k , spawn , SHCMD ( " ~/nixos/scripts/code.sh " ) } ,
2024-07-30 17:06:36 +02:00
TAGKEYS ( XK_ampersand , 0 )
TAGKEYS ( XK_eacute , 1 )
TAGKEYS ( XK_quotedbl , 2 )
TAGKEYS ( XK_apostrophe , 3 )
TAGKEYS ( XK_parenleft , 4 )
TAGKEYS ( XK_minus , 5 )
TAGKEYS ( XK_egrave , 6 )
TAGKEYS ( XK_underscore , 7 )
TAGKEYS ( XK_ccedilla , 8 )
2024-07-29 19:33:52 +02:00
} ;
/* button definitions */
/* click can be ClkTagBar, ClkLtSymbol, ClkStatusText, ClkWinTitle, ClkClientWin, or ClkRootWin */
static const Button buttons [ ] = {
2024-07-30 17:54:28 +02:00
/* click event mask button function argument */
{ ClkLtSymbol , 0 , Button1 , setlayout , { 0 } } ,
{ ClkTagBar , 0 , Button1 , view , { 0 } } ,
2024-07-29 19:33:52 +02:00
} ;