diff options
| author | Shivesh Mandalia <mail@shivesh.org> | 2021-09-23 15:09:20 +0100 |
|---|---|---|
| committer | Shivesh Mandalia <mail@shivesh.org> | 2021-09-23 15:09:20 +0100 |
| commit | cae7d561524ec143baa849237b5a7bbb7051502e (patch) | |
| tree | 2167cd5f5c3d6c571f7e8602e93ee84d931eb572 /config.def.h | |
| parent | dae3ae1dba800f80f36d79075a2330b2035c1bf3 (diff) | |
| download | tabbed-cae7d561524ec143baa849237b5a7bbb7051502e.tar.gz tabbed-cae7d561524ec143baa849237b5a7bbb7051502e.zip | |
Implement hiding of the window frame
- Config option to set whether the frame is hidden on start
- Keyboard shortcut to toggle whether the frame is hidden or not
Diffstat (limited to 'config.def.h')
| -rw-r--r-- | config.def.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h index defa426..ccbba84 100644 --- a/config.def.h +++ b/config.def.h @@ -14,6 +14,7 @@ static const char titletrim[] = "..."; static const int tabwidth = 200; static const Bool foreground = True; static Bool urgentswitch = False; +static Bool hideframe = True; /* * Where to place a new tab when it is opened. When npisrelative is True, @@ -62,5 +63,6 @@ static Key keys[] = { { MODKEY, XK_u, focusurgent, { 0 } }, { MODKEY|ShiftMask, XK_u, toggle, { .v = (void*) &urgentswitch } }, + { 0, XK_F10, toggleframe, { 0 } }, { 0, XK_F11, fullscreen, { 0 } }, }; |
