This commit is contained in:
Stephan Raabe
2023-12-18 20:33:29 +01:00
parent 16abb6cdf2
commit 0607296848
55 changed files with 656 additions and 251 deletions

View File

@@ -0,0 +1,2 @@
name="Workspaces"
order=1

View File

@@ -0,0 +1,40 @@
#!/bin/bash
_getHeader "$name" "$author"
# Define File
targetFile="$HOME/dotfiles/waybar/modules.json"
# Define Markers
startMarker="\/\/ START WORKSPACE"
endMarker="\/\/ END WORKSPACES"
# Define Replacement Template
customtemplate="\"*\": VALUE"
# Select Value
customvalue=$(gum choose 5 6 7 8 9 10)
# Replace in Template
customtext="${customtemplate/VALUE/"$customvalue"}"
# Ensure that markers are in target file
if grep -s "$startMarker" $targetFile && grep -s "$endMarker" $targetFile; then
echo "Exists"
# Write into File
sed -i '/'"$startMarker"'/,/'"$endMarker"'/ {
//!d
/'"$startMarker"'/a\
'"$customtext"'
}' $targetFile
# Reload Waybar
$HOME/dotfiles/waybar/launch.sh 1>/dev/null 2>&1
_goBack
else
echo "ERROR: Marker not found."
sleep 2
_goBack
fi