diff options
-rw-r--r-- | README.md | 1 | ||||
-rw-r--r-- | config.def.h | 8 | ||||
-rw-r--r-- | config.h | 8 |
3 files changed, 8 insertions, 9 deletions
@@ -7,4 +7,3 @@ - attachside - removeborder - deck -- preserveonrestart diff --git a/config.def.h b/config.def.h index 60f2834..b1c2b71 100644 --- a/config.def.h +++ b/config.def.h @@ -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 }, - { "Ghostty", NULL, NULL, 0, 0, 1, 0, -1 }, + { "St", NULL, NULL, 0, 0, 1, 0, -1 }, { NULL, NULL, "Event Tester", 0, 0, 0, 1, -1 }, /* xev */ }; @@ -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[] = { "ghostty", NULL }; +static const char *termcmd[] = { "st", NULL }; static const Key keys[] = { /* modifier key function argument */ @@ -88,7 +88,6 @@ 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} }, @@ -97,6 +96,7 @@ 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.sh") }, + { 0, XK_Print, spawn, SHCMD("screenshot") }, TAGKEYS( XK_ampersand, 0) TAGKEYS( XK_eacute, 1) TAGKEYS( XK_quotedbl, 2) @@ -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 }, - { "Ghostty", NULL, NULL, 0, 0, 1, 0, -1 }, + { "St", NULL, NULL, 0, 0, 1, 0, -1 }, { NULL, NULL, "Event Tester", 0, 0, 0, 1, -1 }, /* xev */ }; @@ -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[] = { "ghostty", NULL }; +static const char *termcmd[] = { "st", NULL }; static const Key keys[] = { /* modifier key function argument */ @@ -88,7 +88,6 @@ 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} }, @@ -97,6 +96,7 @@ 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.sh") }, + { 0, XK_Print, spawn, SHCMD("screenshot") }, TAGKEYS( XK_ampersand, 0) TAGKEYS( XK_eacute, 1) TAGKEYS( XK_quotedbl, 2) |