diff options
author | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2013-02-22 15:15:37 +0100 |
---|---|---|
committer | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2013-02-22 15:17:26 +0100 |
commit | 638e34cc4ef3341877d62d7453c9373c8992fe10 (patch) | |
tree | a2643043cb3a09bcf7cf248cf45d3d4ccd9296cd | |
parent | 631cc5d19e7d86da0bc10c7b328dcd6e4fb44b56 (diff) | |
download | dotfiles-638e34cc4ef3341877d62d7453c9373c8992fe10.tar.gz dotfiles-638e34cc4ef3341877d62d7453c9373c8992fe10.tar.bz2 dotfiles-638e34cc4ef3341877d62d7453c9373c8992fe10.zip |
awesome: Fix cursor
-rw-r--r-- | .config/awesome/awesome.lua | 7 |
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, |