diff options
Diffstat (limited to '.config')
-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, |