Regenerated

This commit is contained in:
2026-04-02 21:40:21 +02:00
parent d37e8c84f2
commit 423ea4d6a1
6 changed files with 332 additions and 318 deletions
+1 -1
View File
@@ -17,7 +17,7 @@
],
"custom/workspaces_content": {
"exec": "~/.config/waybar/scripts/hyprscroll-overflow.sh",
"exec": "~/.config/waybar/scripts/workspaces_content.sh",
"interval": 2,
"return-type": "json",
"format": "{}",
@@ -0,0 +1,14 @@
#!/usr/bin/env bash
# Get active workspace ID
active_ws=$(hyprctl activeworkspace -j | jq -r '.id')
# Count clients in the active workspace
clients=$(hyprctl -j clients | jq --argjson w "$active_ws" '[.[] | select(.workspace.id==$w)] | length')
# Output valid JSON for Waybar
if [ "$clients" -eq 0 ]; then
echo "{\"text\":\"$active_ws\"}"
else
echo "{\"text\":\"$active_ws$clients\"}"
fi
+1 -1
View File
@@ -1,5 +1,5 @@
# Path to syntax highlighting installed by Nix
ZSH_SYNTAX_HIGHLIGHTING="${HOME}/.nix-pwofile/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh"
ZSH_SYNTAX_HIGHLIGHTING="${HOME}/.nix-profile/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh"
# Load syntax highlighting if available
if [ -f "$ZSH_SYNTAX_HIGHLIGHTING" ]; then
@@ -24,8 +24,8 @@ in
force = true;
executable = true;
};
".config/waybar/scripts/hyprscroll-overflow.sh" = {
text = builtins.readFile "${assetPath}/scripts/hyprscroll-overflow.sh";
".config/waybar/scripts/workspaces_content.sh" = {
text = builtins.readFile "${assetPath}/scripts/workspaces_content.sh";
force = true;
executable = true;
};