summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Franzke <benjaminfranzke@googlemail.com>2013-02-22 15:15:37 +0100
committerBenjamin Franzke <benjaminfranzke@googlemail.com>2013-02-22 15:17:26 +0100
commit638e34cc4ef3341877d62d7453c9373c8992fe10 (patch)
treea2643043cb3a09bcf7cf248cf45d3d4ccd9296cd
parent631cc5d19e7d86da0bc10c7b328dcd6e4fb44b56 (diff)
downloaddotfiles-638e34cc4ef3341877d62d7453c9373c8992fe10.tar.gz
dotfiles-638e34cc4ef3341877d62d7453c9373c8992fe10.tar.bz2
dotfiles-638e34cc4ef3341877d62d7453c9373c8992fe10.zip
awesome: Fix cursor
-rw-r--r--.config/awesome/awesome.lua7
1 files changed, 7 insertions, 0 deletions
diff --git a/.config/awesome/awesome.lua b/.config/awesome/awesome.lua
index 6cc3e21..da7a421 100644
--- a/.config/awesome/awesome.lua
+++ b/.config/awesome/awesome.lua
@@ -28,6 +28,13 @@ terminal = "urxvtc"
editor = os.getenv("EDITOR") or "nano"
editor_cmd = terminal .. " -e " .. editor
+-- Fixes for the cursor [disables startup notification]
+local oldspawn = awful.util.spawn
+awful.util.spawn = function (s)
+ oldspawn(s, false)
+end
+awful.util.spawn("xsetroot -cursor_name left_ptr", false)
+
-- Default modkey.
-- Usually, Mod4 is the key with a logo between Control and Alt.
-- If you do not like this or do not have such a key,