dotfiles

*nix config files
git clone git://git.pyratebeard.net/dotfiles.git
Log | Files | Refs | README

commit 63cbb964da074942b59dea2af77f67066dccec50
parent d706b8e8627efecad27f868f90c7f1172da976a7
Author: pyratebeard <root@pyratebeard.net>
Date:   Thu, 21 Sep 2017 10:26:17 +0100

keybinding for sticky window

Diffstat:
Mawesome/.config/awesome/rc.lua | 4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git a/awesome/.config/awesome/rc.lua b/awesome/.config/awesome/rc.lua @@ -312,6 +312,10 @@ clientkeys = awful.util.table.join( awful.key({ modkey, "Shift" }, "m", function (c) c.maximized = not c.maximized + end), + awful.key({ modkey, "Shift" }, "s", + function (c) + c.stick = not c.sticky end) )