Minor edits.

This commit is contained in:
Derek Taylor 2020-01-10 18:09:41 -06:00
parent dbcf1f97cc
commit 0bb62fbe4f
2 changed files with 12 additions and 6 deletions

View File

@ -190,6 +190,10 @@ def init_keys():
["mod1", "control"], "t", ["mod1", "control"], "t",
lazy.spawn("./.dmenu/dmenu-trading.sh") lazy.spawn("./.dmenu/dmenu-trading.sh")
), ),
Key(
["mod1", "control"], "i",
lazy.spawn("./.dmenu/dmenu-scrot.sh")
),
### My applications launched with SUPER + ALT + KEY ### My applications launched with SUPER + ALT + KEY
Key( Key(
@ -380,10 +384,6 @@ def init_widgets_list():
padding=0, padding=0,
fontsize=37 fontsize=37
), ),
widget.Systray(
background=colors[10],
padding = 5
),
widget.TextBox( widget.TextBox(
text="", text="",
foreground=colors[2], foreground=colors[2],
@ -462,8 +462,9 @@ def init_widgets_list():
widget.Cmus( widget.Cmus(
max_chars = 40, max_chars = 40,
update_interval = 0.5, update_interval = 0.5,
foreground=colors[2], background=colors[7],
background = colors[7] play_color = colors[2],
noplay_color = colors[2]
), ),
widget.TextBox( widget.TextBox(
text='', text='',
@ -491,6 +492,10 @@ def init_widgets_list():
foreground = colors[0], foreground = colors[0],
background = colors[5] background = colors[5]
), ),
widget.Systray(
background=colors[0],
padding = 5
),
] ]
return widgets_list return widgets_list

View File

@ -254,6 +254,7 @@ myKeys =
, ("M1-C-m", spawn "./.dmenu/dmenu-sysmon.sh") , ("M1-C-m", spawn "./.dmenu/dmenu-sysmon.sh")
, ("M1-C-p", spawn "passmenu") , ("M1-C-p", spawn "passmenu")
, ("M1-C-s", spawn "./.dmenu/dmenu-surfraw.sh") , ("M1-C-s", spawn "./.dmenu/dmenu-surfraw.sh")
, ("M1-C-/", spawn "./.dmenu/dmenu-scrot.sh")
--- My Applications (Super+Alt+Key) --- My Applications (Super+Alt+Key)
, ("M-M1-a", spawn (myTerminal ++ " -e ncpamixer")) , ("M-M1-a", spawn (myTerminal ++ " -e ncpamixer"))