merged worktrees, task gkt window and gnome extension
This commit is contained in:
27
dmapp/dmos/gnome-extension/install.sh
Normal file
27
dmapp/dmos/gnome-extension/install.sh
Normal 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"
|
||||
Reference in New Issue
Block a user