new view, gnome extension

This commit is contained in:
buenosairesam
2025-12-19 20:18:38 -03:00
parent 58348eab82
commit 38f3c7a711
10 changed files with 945 additions and 1 deletions

View File

@@ -0,0 +1,27 @@
#!/bin/bash
# Install Deskmeter GNOME Task Indicator
EXTENSION_DIR="$HOME/.local/share/gnome-shell/extensions"
EXTENSION_NAME="deskmeter-indicator@local"
SOURCE_DIR="$(cd "$(dirname "$0")" && pwd)/$EXTENSION_NAME"
echo "Installing Deskmeter Task Indicator..."
# Create extensions directory if it doesn't exist
mkdir -p "$EXTENSION_DIR"
# Copy extension files
cp -r "$SOURCE_DIR" "$EXTENSION_DIR/"
echo "Extension copied to $EXTENSION_DIR/$EXTENSION_NAME"
echo ""
echo "Next steps:"
echo "1. Restart GNOME Shell:"
echo " - On X11: Press Alt+F2, type 'r', press Enter"
echo " - On Wayland: Log out and log back in"
echo ""
echo "2. Enable the extension:"
echo " gnome-extensions enable $EXTENSION_NAME"
echo ""
echo "Make sure dmweb is running on http://localhost:10000"