2023-12-18 20:57:32 +00:00
|
|
|
#!/bin/bash
|
|
|
|
_getHeader "$name" "$author"
|
|
|
|
|
2024-01-01 10:40:15 +00:00
|
|
|
echo "Hide or show the bluetooth module in ML4W waybar themes."
|
2023-12-18 20:57:32 +00:00
|
|
|
|
|
|
|
# Define File
|
2023-12-19 09:32:43 +00:00
|
|
|
targetFile1="$HOME/dotfiles/waybar/themes/ml4w/config"
|
|
|
|
targetFile2="$HOME/dotfiles/waybar/themes/ml4w-blur/config"
|
|
|
|
targetFile3="$HOME/dotfiles/waybar/themes/ml4w-blur-bottom/config"
|
|
|
|
targetFile4="$HOME/dotfiles/waybar/themes/ml4w-bottom/config"
|
2024-01-24 14:40:36 +00:00
|
|
|
targetFile5="$HOME/dotfiles/waybar/themes/ml4w-minimal/config"
|
2023-12-27 22:19:24 +00:00
|
|
|
settingsFile="$HOME/dotfiles/.settings/waybar_bluetooth"
|
2023-12-18 20:57:32 +00:00
|
|
|
|
|
|
|
# Define Markers
|
2023-12-27 22:19:24 +00:00
|
|
|
startMarker="START BT TOOGLE"
|
|
|
|
endMarker="END BT TOOGLE"
|
2023-12-18 20:57:32 +00:00
|
|
|
|
|
|
|
# Select Value
|
2024-01-11 15:03:36 +00:00
|
|
|
customvalue=$(gum choose "SHOW" "HIDE" "DEFAULT")
|
2023-12-18 20:57:32 +00:00
|
|
|
|
|
|
|
if [ ! -z $customvalue ]; then
|
|
|
|
if [ "$customvalue" == "SHOW" ] ;then
|
2023-12-27 22:19:24 +00:00
|
|
|
customtext=" \"bluetooth\","
|
2024-01-11 15:03:36 +00:00
|
|
|
elif [ "$customvalue" == "DEFAULT" ] ;then
|
|
|
|
customtext=" \"bluetooth\","
|
2023-12-18 20:57:32 +00:00
|
|
|
else
|
2023-12-27 22:19:24 +00:00
|
|
|
customtext=" \/\/\"bluetooth\","
|
2023-12-18 20:57:32 +00:00
|
|
|
fi
|
2023-12-19 15:48:01 +00:00
|
|
|
|
|
|
|
_replaceInFile $startMarker $endMarker $customtext $targetFile1
|
|
|
|
_replaceInFile $startMarker $endMarker $customtext $targetFile2
|
|
|
|
_replaceInFile $startMarker $endMarker $customtext $targetFile3
|
|
|
|
_replaceInFile $startMarker $endMarker $customtext $targetFile4
|
2024-01-24 14:40:36 +00:00
|
|
|
_replaceInFile $startMarker $endMarker $customtext $targetFile5
|
2023-12-27 22:19:24 +00:00
|
|
|
_writeSettings $settingsFile $customtext
|
2023-12-19 15:48:01 +00:00
|
|
|
|
|
|
|
# Reload Waybar
|
|
|
|
setsid $HOME/dotfiles/waybar/launch.sh 1>/dev/null 2>&1 &
|
|
|
|
_goBack
|
2023-12-18 20:57:32 +00:00
|
|
|
else
|
|
|
|
echo "ERROR: Define a value."
|
|
|
|
sleep 2
|
|
|
|
_goBack
|
|
|
|
fi
|