feat: minor improvements

This commit is contained in:
2026-05-11 16:29:24 +02:00
parent 3556bcf33d
commit fb17abf8d5
3 changed files with 4 additions and 3 deletions

1
.gitignore vendored
View File

@@ -5,6 +5,7 @@
!betterlockscreen/
!bspwm/
!custom_icons/
!dotdot/
!i3/
!mpd/

View File

@@ -130,7 +130,7 @@ super + Tab
#Programas
super + b
zen-browser
helium-browser
super + shift + b
firefox --private-window

View File

@@ -16,7 +16,7 @@ getFormalNameFromSink() {
echo "Bluetooth audio"
;;
*usb-Synaptics*)
echo "USB-c audio"
echo "USB-C audio"
;;
*USB*)
echo "USB audio"
@@ -39,7 +39,7 @@ getFormalNameFromSink() {
declare -A sink_map
declare menu_options
readarray -t sink_list < <(pactl list sinks | grep -e "Name" | awk -F: '{print $2}' | xargs)
readarray -t sink_list < <(pactl list sinks | grep -e "Name" | awk -F: '{print $2}')
sink_default=$(pactl get-default-sink)
for sink in "${sink_list[@]}"; do