X-Git-Url: https://git.madduck.net/etc/awesome.git/blobdiff_plain/9fc65316a830abd0648b2f8df4f839fb55408fff..7b424d353216fb6ed7eda3a0653c12de1003679a:/.config/awesome/rc.lua diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua index 0cf1ab6..99cc970 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) @@ -447,8 +450,8 @@ globalkeys = awful.util.table.join(globalkeys, awful.key({ cmdmodkey }, "Right", function () awful.util.spawn("nyxmms2 next") end), awful.key({ cmdmodkey }, "space", function () awful.util.spawn("nyxmms2 toggle") end), awful.key({ cmdmodkey }, "backslash", function () - local f = io.popen('nyxmms2 status', 'r') - naughty.notify({ title = "Now playing", text = f:read(), timeout = 5 }) + local f = io.popen('nyxmms2 current', 'r') + naughty.notify({ title = "Now playing", text = string.sub(f:read(), 10), timeout = 5 }) f:close() end), awful.key({ cmdmodkey, "Shift" }, "backslash", function () @@ -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 --ssh='ssh -t' 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)