diff options
author | ThanosApollo <[email protected]> | 2022-08-31 10:54:08 +0300 |
---|---|---|
committer | ThanosApollo <[email protected]> | 2022-08-31 10:54:08 +0300 |
commit | a6d1ec012952c5e955676af22732cd177d1f3abf (patch) | |
tree | b787556e8f94151d67cce064af5614978eec3888 | |
parent | 58cd64dc78347badd4e52ec9a3907bff8cbdc251 (diff) |
Add caduceus image
-rw-r--r-- | .config/qtile/caduceus.jpg | bin | 0 -> 66834 bytes | |||
-rw-r--r-- | .config/qtile/config.py | 6 |
2 files changed, 4 insertions, 2 deletions
diff --git a/.config/qtile/caduceus.jpg b/.config/qtile/caduceus.jpg Binary files differnew file mode 100644 index 0000000..71ce485 --- /dev/null +++ b/.config/qtile/caduceus.jpg diff --git a/.config/qtile/config.py b/.config/qtile/config.py index 66191ea..15caee0 100644 --- a/.config/qtile/config.py +++ b/.config/qtile/config.py @@ -40,7 +40,6 @@ from libqtile.widget import Spacer mod = "mod4" mod1 = "alt" mod2 = "control" -image = '~/Pictures/medicine/caduceus-crystal.jpg' @hook.subscribe.startup_once def start_once(): @@ -73,6 +72,9 @@ keys = [ Key([mod, "shift"], "a", lazy.spawn('anki'), desc='Launch anki'), + Key([mod, "shift"], "m", + lazy.spawn("spotify"), + desc="Laucnh spotify"), Key([mod], "Tab", lazy.spawn("dmenu_run -p 'Run: '"), desc='Run Launcher' @@ -325,7 +327,7 @@ def init_widgets_list(): background = colors[1] ), widget.Image( - filename = image, + filename = "~/.config/qtile/caduceus.jpg", scale = "True", ), widget.GroupBox( |