diff options
| author | Michael Kantor <michael@mikekantor.xyz> | 2025-02-25 16:56:16 -0500 | 
|---|---|---|
| committer | Michael Kantor <michael@mikekantor.xyz> | 2025-02-25 16:56:16 -0500 | 
| commit | d0ac4b9667108cd1eeb57b88072cf428cb953854 (patch) | |
| tree | 1b5b881838ae3fd7b31326541b84679e37121d0e | |
| parent | bd629235bb283e3f4f4a4ce60faf721c1bf83fb8 (diff) | |
Updated mic script to mute mic then show status.
| -rw-r--r-- | config.py | 2 | ||||
| -rwxr-xr-x | mic.sh | 1 | 
2 files changed, 2 insertions, 1 deletions
| @@ -370,7 +370,7 @@ keys = [      Key([], "XF86AudioPause", lazy.spawn(f"{mpc} pause")),      Key([], "XF86AudioPrev", lazy.spawn(f"{mpc} prev")),      Key([], "XF86AudioNext", lazy.spawn(f"{mpc} next")), -    Key([mod], "m", lazy.spawn("amixer -q set Capture toggle"), lazy.spawn(f"{home}/.config/qtile/mic.sh")), +    Key([mod], "m", lazy.spawn(f"{home}/.config/qtile/mic.sh")),      Key([mod], "comma", lazy.spawn(f"{mpc} prev")),      Key([mod, "shift"], "comma", lazy.spawn(f"{mpc} seek 0%")), @@ -1,2 +1,3 @@  #!/bin/sh +amixer -q set Capture toggle  notify-send "$(amixer | grep Capture)" | 
