mirror of
https://github.com/Fluffy-Bean/dots.git
synced 2025-05-14 07:42:14 +00:00
Polybar Mic button and cleaning up code
This commit is contained in:
parent
3b2fca577a
commit
54b578567c
7 changed files with 44 additions and 9 deletions
|
@ -59,7 +59,7 @@ font-3 = Material:size=13;2
|
|||
;;_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
|
||||
modules-left = dateL date dateR space timeL time timeR
|
||||
modules-center = spotifyL spotify spotifyR
|
||||
modules-right = sysiconL dnd updates network bluetooth sysiconR space1 volumeL volume volumeR space2 powerL power powerR
|
||||
modules-right = sysiconL dnd updates network bluetooth sysiconR space1 volumeL mic volume volumeR space2 powerL power powerR
|
||||
|
||||
|
||||
;;_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
#!/bin/sh
|
||||
|
||||
if [ $(bluetoothctl show | grep "Powered: yes" | wc -c) -eq 0 ]
|
||||
then
|
||||
echo "%{F#666}"
|
||||
|
|
9
polybar/scripts/mic.sh
Executable file
9
polybar/scripts/mic.sh
Executable file
|
@ -0,0 +1,9 @@
|
|||
#!/bin/sh
|
||||
|
||||
value=$(amixer get Capture | grep '\[off\]')
|
||||
|
||||
if [ "$value" == "" ]; then
|
||||
echo " ";
|
||||
else
|
||||
echo "%{F#666} ";
|
||||
fi
|
|
@ -1,5 +1,8 @@
|
|||
#!/bin/sh
|
||||
if [ $(bluetoothctl show | grep "Powered: yes" | wc -c) -eq 0 ]
|
||||
|
||||
value=$(bluetoothctl show | grep "Powered: yes" | wc -c)
|
||||
|
||||
if [ "$value" == 0 ]
|
||||
then
|
||||
bluetoothctl power on
|
||||
else
|
||||
|
|
|
@ -2,8 +2,7 @@
|
|||
|
||||
value=$(gsettings get org.gnome.desktop.notifications show-banners)
|
||||
|
||||
if [ $value == "true" ]
|
||||
then
|
||||
if [ "$value" == "true" ]; then
|
||||
gsettings set org.gnome.desktop.notifications show-banners false
|
||||
else
|
||||
gsettings set org.gnome.desktop.notifications show-banners true
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
#!/bin/sh
|
||||
|
||||
b=$(pacman -Qu | wc -l)
|
||||
value=$(pacman -Qu | wc -l)
|
||||
|
||||
if [ "$b" != "0" ]; then
|
||||
if [ "$value" != "0" ]; then
|
||||
echo " ";
|
||||
else
|
||||
echo "";
|
||||
|
|
|
@ -26,6 +26,16 @@ label = "%time%"
|
|||
format-background = ${colors.modback}
|
||||
|
||||
|
||||
;;_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
|
||||
;; WEATHER
|
||||
;;_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
|
||||
[module/weather]
|
||||
type = custom/script
|
||||
exec = ~/.config/polybar/scripts/weather-plugin.sh
|
||||
tail = false
|
||||
interval = 960
|
||||
|
||||
|
||||
;;_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
|
||||
;; SPOTIFY
|
||||
;;_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
|
||||
|
@ -54,7 +64,7 @@ format-background = ${colors.modback}
|
|||
;format-padding = 1
|
||||
|
||||
exec = bash ~/.config/polybar/scripts/dnd.sh
|
||||
click-left = exec bash ~/.config/polybar/scripts/toggle_dnd.sh
|
||||
click-left = bash ~/.config/polybar/scripts/toggle_dnd.sh
|
||||
|
||||
|
||||
;;_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
|
||||
|
@ -70,7 +80,7 @@ format-background = ${colors.modback}
|
|||
format = <label>
|
||||
label = %output%
|
||||
|
||||
exec = sh ~/.config/polybar/scripts/update_check.sh
|
||||
exec = bash ~/.config/polybar/scripts/update_check.sh
|
||||
|
||||
|
||||
;;_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
|
||||
|
@ -103,9 +113,21 @@ format-background = ${colors.modback}
|
|||
;format-padding = 1
|
||||
|
||||
exec = ~/.config/polybar/scripts/bluetooth.sh
|
||||
click-left = exec ~/.config/polybar/scripts/toggle_bluetooth.sh
|
||||
click-left = bash ~/.config/polybar/scripts/toggle_bluetooth.sh
|
||||
|
||||
|
||||
;;_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
|
||||
;; MIC
|
||||
;;_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
|
||||
[module/mic]
|
||||
type = custom/script
|
||||
interval = 1
|
||||
|
||||
format-background = ${colors.modback}
|
||||
|
||||
exec = ~/.config/polybar/scripts/mic.sh
|
||||
click-left = amixer set Capture toggle &
|
||||
|
||||
;;_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
|
||||
;; VOLUME
|
||||
;;_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
|
||||
|
@ -131,4 +153,5 @@ type = custom/script
|
|||
exec = echo " "
|
||||
format-background = ${colors.modback}
|
||||
format-prefix = " ☰"
|
||||
;format-prefix = " "
|
||||
click-left = bash ~/.config/polybar/scripts/powermenu.sh &
|
||||
|
|
Loading…
Add table
Reference in a new issue