diff options
Diffstat (limited to 'config.def.h')
-rw-r--r-- | config.def.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/config.def.h b/config.def.h index b1c2b71..375d112 100644 --- a/config.def.h +++ b/config.def.h @@ -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[] = { "JetBrainsMono Nerd Font Mono:size=11" }; -static const char dmenufont[] = "JetBrainsMono Nerd Font Mono:size=11"; +static const char *fonts[] = { "Iosevka Nerd Font Regular:size=11" }; +static const char dmenufont[] = "Iosevka 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[] = { "Ⅰ" ,"Ⅱ", "Ⅲ", "Ⅳ"}; //, "5", "6", "7", "8", "9" }; +static const char *tags[] = { "1" ,"2", "3", "4", "5", "6", "7", "8", "9" }; static const Rule rules[] = { /* xprop(1): @@ -32,7 +32,7 @@ static const Rule rules[] = { /* class instance title tags mask isfloating isterminal noswallow monitor */ { "Gimp", NULL, NULL, 0, 1, 0, 0, -1 }, { "Firefox", NULL, NULL, 1 << 8, 0, 0, -1, -1 }, - { "St", NULL, NULL, 0, 0, 1, 0, -1 }, + { "Ghostty", NULL, NULL, 0, 0, 1, 0, -1 }, { NULL, NULL, "Event Tester", 0, 0, 0, 1, -1 }, /* xev */ }; @@ -44,10 +44,10 @@ static const int lockfullscreen = 1; /* 1 will force focus on the fullscreen win static const Layout layouts[] = { /* symbol arrange function */ - { "[Ƭ]", tile }, /* first entry is default */ - { "[Φ]", NULL }, /* no layout function means floating behavior */ - { "[µ]", monocle }, /* everything is maximised */ - { "[D]", deck }, /* client windows superimposed */ + { "[t]", tile }, /* first entry is default */ + { "[f]", NULL }, /* no layout function means floating behavior */ + { "[m]", monocle }, /* everything is maximised */ + { "[d]", deck }, /* client windows superimposed */ }; /* key definitions */ @@ -64,7 +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, "-nb", normbgcolor, "-nf", normfgcolor, "-sb", selbgcolor, "-sf", selfgcolor, NULL }; -static const char *termcmd[] = { "st", NULL }; +static const char *termcmd[] = { "ghostty", NULL }; static const Key keys[] = { /* modifier key function argument */ @@ -72,7 +72,7 @@ static const Key keys[] = { { MODKEY, XK_Return, spawn, {.v = termcmd } }, { MODKEY, XK_w, spawn, SHCMD("librewolf") }, { MODKEY, XK_x, spawn, SHCMD("dmenu-power") }, - { MODKEY, XK_v, spawn, SHCMD("dmenu-connect") }, + { MODKEY, XK_s, spawn, SHCMD("dmenu-audio") }, { MODKEY, XK_d, incnmaster, {.i = -1 } }, { MODKEY, XK_i, incnmaster, {.i = +1 } }, { MODKEY, XK_t, setlayout, {.v = &layouts[0]} }, @@ -88,6 +88,7 @@ static const Key keys[] = { { MODKEY, XK_Tab, view, {0} }, { MODKEY, XK_space, setlayout, {0} }, { MODKEY, XK_z, zoom, {0} }, + { MODKEY, XK_c, killclient, {0} }, { MODKEY, XK_Right, viewnext, {0} }, { MODKEY, XK_Left, viewprev, {0} }, { MODKEY|ShiftMask, XK_Right, tagtonext, {0} }, @@ -96,7 +97,6 @@ static const Key keys[] = { { MODKEY|ControlMask, XK_Left, focusstack, {.i = -1 } }, { MODKEY|ShiftMask, XK_Up, rotatestack, {.i = +1 } }, { MODKEY|ShiftMask, XK_Down, rotatestack, {.i = -1 } }, - { MODKEY|ShiftMask, XK_c, killclient, {0} }, { MODKEY|ShiftMask, XK_q, quit, {0} }, { MODKEY|ShiftMask, XK_space, togglefloating, {0} }, { MODKEY|ShiftMask, XK_agrave, tag, {.ui = ~0 } }, @@ -109,7 +109,7 @@ static const Key keys[] = { { 0, XF86XK_MonBrightnessDown, spawn, SHCMD("brightnessctl set 10%-") }, { 0, XF86XK_MonBrightnessUp, spawn, SHCMD("brightnessctl set 10%+") }, { 0, XF86XK_Launch1, spawn, SHCMD("dmenu-power") }, - { 0, XK_Print, spawn, SHCMD("screenshot") }, + { 0, XK_Print, spawn, SHCMD("screenshot.sh") }, TAGKEYS( XK_ampersand, 0) TAGKEYS( XK_eacute, 1) TAGKEYS( XK_quotedbl, 2) |