X-Git-Url: https://git.madduck.net/etc/awesome.git/blobdiff_plain/e543ed4d76be02b90325fa22f7b4baacd8a3c54e..78feaef3d66703572e81ec990d50ffc650c00243:/.config/awesome/rc.lua diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua index bd7df7f..1bbe2d4 100644 --- a/.config/awesome/rc.lua +++ b/.config/awesome/rc.lua @@ -10,6 +10,9 @@ require("naughty") --require("vicious") require("obvious.battery") +require("obvious.clock") + +--require("bashets.bashets") -- Load Debian menu entries require("debian.menu") @@ -380,7 +383,7 @@ clientkeys = awful.util.table.join( awful.key({ modkey, "Control" }, "Return", function (c) c:swap(awful.client.getmaster()) end), awful.key({ modkey, }, "o", awful.client.movetoscreen ), awful.key({ modkey, "Shift" }, "r", function (c) c:redraw() end), - awful.key({ modkey }, "t", awful.client.togglemarked ), + awful.key({ modkey, }, "t", function (c) c.ontop = not c.ontop end), awful.key({ modkey, }, "n", function (c) c.minimized = not c.minimized end), awful.key({ modkey, }, "m", function (c) @@ -469,7 +472,7 @@ globalkeys = awful.util.table.join(globalkeys, awful.key({ cmdmodkey }, "g", function () awful.util.spawn("gscan2pdf") end), awful.key({ cmdmodkey }, "o", function () awful.util.spawn("okular") end), awful.key({ cmdmodkey }, "l", function () awful.util.spawn("libreoffice") end), - awful.key({ cmdmodkey }, "i", function () awful.util.spawn(terminal .. " -title irc -name irc -e ssh -Snone -t irc screen -dr irc") end), + awful.key({ cmdmodkey }, "i", function () awful.util.spawn(terminal .. " -title irc -name irc -e mosh -- irc screen -dr irc") end), awful.key({ cmdmodkey }, "x", function () awful.util.spawn_with_shell("/sbin/start-stop-daemon --start --background --exec /usr/bin/xscreensaver; xscreensaver-command -lock") end), awful.key({ cmdmodkey, "Shift" }, "x", function () awful.util.spawn("xscreensaver-command -exit") end), awful.key(nil, "XF86ScreenSaver", function () awful.util.spawn("xset dpms force off") end)