summaryrefslogtreecommitdiff
path: root/src/config
diff options
context:
space:
mode:
authoruint23 <https://uint23.xyz/>2025-04-20 06:13:41 +0100
committeruint23 <https://uint23.xyz/>2025-04-20 06:13:41 +0100
commit3036894841fce9b73e6b34779eeabbe326e19302 (patch)
tree5c8e88c3b9cff8c86c7b092e1a69616ba3f3050f /src/config
parent4b53891cac71bb7d48410dd795c9a7a913cb657d (diff)
fullscr support + readme glowup + makefile glowup gaaaaashhh
Diffstat (limited to 'src/config')
-rw-r--r--src/config4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/config b/src/config
index 2c2fb8d..97e15bc 100644
--- a/src/config
+++ b/src/config
@@ -98,7 +98,6 @@
CMD(terminal, "st");
CMD(browser, "firefox");
-
/*
* ———————————————< Bindings >————————————————*
*
@@ -179,6 +178,8 @@ static const Binding binds[] =
CALL(MOD, space, toggle_floating),
CALL(MOD|SHIFT, space, toggle_floating_global),
+ CALL(MOD|SHIFT, f, toggle_fullscreen),
+
/*—————< Here are your executable functions >—————*/
BIND(MOD, Return, terminal),
@@ -212,4 +213,5 @@ static const Binding binds[] =
CALL(MOD, 9, change_ws9),
CALL(MOD|SHIFT, 9, moveto_ws9),
+
};