diff options
author | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2011-11-22 09:37:25 +0100 |
---|---|---|
committer | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2011-11-22 09:38:32 +0100 |
commit | f75a8afc044dc3b11e861ec6a92736bc4dbd5732 (patch) | |
tree | 6ef78568fb32bfe2bf4f983b81bf5ba652c3fd12 /.config/awesome | |
parent | 07d89441019f7f1308b4530a6b0a697325861d4e (diff) | |
download | dotfiles-f75a8afc044dc3b11e861ec6a92736bc4dbd5732.tar.gz dotfiles-f75a8afc044dc3b11e861ec6a92736bc4dbd5732.tar.bz2 dotfiles-f75a8afc044dc3b11e861ec6a92736bc4dbd5732.zip |
awesome: Default to a bigger irc window
Diffstat (limited to '.config/awesome')
-rw-r--r-- | .config/awesome/awesome.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.config/awesome/awesome.lua b/.config/awesome/awesome.lua index a44f8bd..6aeaf8b 100644 --- a/.config/awesome/awesome.lua +++ b/.config/awesome/awesome.lua @@ -224,7 +224,7 @@ globalkeys = awful.util.table.join( awful.key({ modkey, }, "w", function () awful.util.spawn("xdg-open about:blank") end), awful.key({ modkey, }, "p", function () awful.util.spawn("pidgin") end), awful.key({ modkey, }, "n", function () awful.util.spawn(terminal .. " -e wicd-curses") end), - awful.key({ modkey, }, "i", function () awful.util.spawn(terminal .. " -e " .. os.getenv("HOME") .. "/.scripts/start_remote_irssi.sh") end), + awful.key({ modkey, }, "i", function () awful.util.spawn(terminal .. " -geometry 100x30 -e " .. os.getenv("HOME") .. "/.scripts/start_remote_irssi.sh") end), awful.key({ }, "Print", function () awful.util.spawn("scrot") end), awful.key({ modkey, }, "Print", function () awful.util.spawn("scrot -s") end), |