Skip to content

Commit 0a068a8

Browse files
committed
Remove gnome-keyring and dbus dependencies from install script
1 parent edee24f commit 0a068a8

File tree

1 file changed

+2
-13
lines changed

1 file changed

+2
-13
lines changed

bin/install-service.sh

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -85,21 +85,10 @@ fi
8585
echo -e "${YELLOW}Installing system dependencies...${NC}"
8686
if command -v apt-get &> /dev/null; then
8787
apt-get update
88-
apt-get install -y librsvg2-bin gnome-keyring dbus-x11
89-
90-
# Set up dbus for gnome-keyring
91-
echo -e "${YELLOW}Setting up dbus and gnome-keyring...${NC}"
92-
mkdir -p /var/cache
93-
dbus-launch --sh-syntax > /var/cache/dbus-env
94-
source /var/cache/dbus-env
95-
96-
# Initialize the keyring
97-
echo -e "${YELLOW}Initializing gnome-keyring...${NC}"
98-
echo -n "password" | gnome-keyring-daemon --unlock
99-
88+
apt-get install -y librsvg2-bin
10089
echo -e "${GREEN}System dependencies installed.${NC}"
10190
else
102-
echo -e "${YELLOW}apt-get not found. Please install librsvg2-bin, gnome-keyring, and dbus-x11 manually.${NC}"
91+
echo -e "${YELLOW}apt-get not found. Please install librsvg2-bin manually.${NC}"
10392
fi
10493

10594
# Install project dependencies automatically

0 commit comments

Comments
 (0)