merged worktrees, task gkt window and gnome extension

This commit is contained in:
buenosairesam
2025-12-23 19:06:43 -03:00
parent f684da5288
commit ac475b9a5a
15 changed files with 430 additions and 1052 deletions

View File

@@ -0,0 +1,20 @@
#!/bin/bash
# Quick update script for GNOME extension development
EXTENSION_DIR="$HOME/.local/share/gnome-shell/extensions"
EXTENSION_NAME="deskmeter-indicator@local"
SOURCE_DIR="$(cd "$(dirname "$0")" && pwd)/$EXTENSION_NAME"
echo "Updating Deskmeter Task Indicator..."
# Copy extension files
cp -r "$SOURCE_DIR" "$EXTENSION_DIR/"
echo "Files copied."
echo ""
echo "Next: Restart GNOME Shell"
echo " X11: Alt+F2, type 'r', press Enter"
echo " Wayland: Log out and back in"
echo ""
echo "Check logs: journalctl -f -o cat /usr/bin/gnome-shell"