From 0bb62fbe4fad40152b1e1a7a2b6c7ab51bec56a2 Mon Sep 17 00:00:00 2001 From: Derek Taylor Date: Fri, 10 Jan 2020 18:09:41 -0600 Subject: [PATCH] Minor edits. --- .config/qtile/config.py | 17 +++++++++++------ .xmonad/xmonad.hs | 1 + 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/.config/qtile/config.py b/.config/qtile/config.py index fb9b157..59e6aa8 100644 --- a/.config/qtile/config.py +++ b/.config/qtile/config.py @@ -190,6 +190,10 @@ def init_keys(): ["mod1", "control"], "t", lazy.spawn("./.dmenu/dmenu-trading.sh") ), + Key( + ["mod1", "control"], "i", + lazy.spawn("./.dmenu/dmenu-scrot.sh") + ), ### My applications launched with SUPER + ALT + KEY Key( @@ -380,10 +384,6 @@ def init_widgets_list(): padding=0, fontsize=37 ), - widget.Systray( - background=colors[10], - padding = 5 - ), widget.TextBox( text=" ↯", foreground=colors[2], @@ -462,8 +462,9 @@ def init_widgets_list(): widget.Cmus( max_chars = 40, update_interval = 0.5, - foreground=colors[2], - background = colors[7] + background=colors[7], + play_color = colors[2], + noplay_color = colors[2] ), widget.TextBox( text='', @@ -491,6 +492,10 @@ def init_widgets_list(): foreground = colors[0], background = colors[5] ), + widget.Systray( + background=colors[0], + padding = 5 + ), ] return widgets_list diff --git a/.xmonad/xmonad.hs b/.xmonad/xmonad.hs index 3df7a1b..ae9679d 100755 --- a/.xmonad/xmonad.hs +++ b/.xmonad/xmonad.hs @@ -254,6 +254,7 @@ myKeys = , ("M1-C-m", spawn "./.dmenu/dmenu-sysmon.sh") , ("M1-C-p", spawn "passmenu") , ("M1-C-s", spawn "./.dmenu/dmenu-surfraw.sh") + , ("M1-C-/", spawn "./.dmenu/dmenu-scrot.sh") --- My Applications (Super+Alt+Key) , ("M-M1-a", spawn (myTerminal ++ " -e ncpamixer"))