From 638e34cc4ef3341877d62d7453c9373c8992fe10 Mon Sep 17 00:00:00 2001 From: Benjamin Franzke Date: Fri, 22 Feb 2013 15:15:37 +0100 Subject: awesome: Fix cursor --- .config/awesome/awesome.lua | 7 +++++++ 1 file changed, 7 insertions(+) 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, -- cgit