diff options
author | Thanos Apollo <[email protected]> | 2023-10-26 20:09:08 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2023-10-26 20:09:08 +0300 |
commit | d09eb6ddf23549ecff6698d61210418fb382c542 (patch) | |
tree | 520718865e55b50387b8b828fcc3e693e7e3ee04 /.config | |
parent | 2e346f74d1d0c9b0d9531abfa9a39ff91e52b57c (diff) |
qtile: Update volume widget to use pamixer
Diffstat (limited to '.config')
-rw-r--r-- | .config/qtile/config.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.config/qtile/config.py b/.config/qtile/config.py index 337b0ea..11ab876 100644 --- a/.config/qtile/config.py +++ b/.config/qtile/config.py @@ -13,6 +13,10 @@ from colors import dracula # "feh --bg-scale ~/wallpapers/wtf.jpeg", # "setxkbmap us -option ctrl:swapcaps"] + +# autostart_path = os.path.expanduser('~/.config/autostart/autostart.sh') +# subprocess.run([autostart_path]) + # for command in autostart_commands: # subprocess.run(command) @@ -160,6 +164,8 @@ def init_widgets_list(): foreground=dracula['orange'], font="JetBrains Mono", margin=10, + get_volume_command="pamixer --get-volume-human", + volume_app = "pamixer" ), # widget.Mpris2( # fontsize= 16, |