mirror of
https://github.com/rbreaves/kinto.git
synced 2025-08-14 06:39:16 +02:00
- Added Linux system tray files WIP
This commit is contained in:
23
xkeysnail-config/trayapps/BudgieApplet/install-applet.sh
Executable file
23
xkeysnail-config/trayapps/BudgieApplet/install-applet.sh
Executable file
@@ -0,0 +1,23 @@
|
||||
#!/bin/bash
|
||||
#Budgie Kinto Applet
|
||||
#This script basically just copies the files to approproate directories.
|
||||
|
||||
APPLETDIR=/usr/lib/budgie-desktop/plugins
|
||||
|
||||
ICONDIR=/usr/share/pixmaps
|
||||
|
||||
PROJECT_NAME='org.budgie-desktop.applet.kinto'
|
||||
|
||||
echo "Installing Budgie Kinto Applet....."
|
||||
|
||||
mkdir -p $APPLETDIR/$PROJECT_NAME
|
||||
|
||||
for file in KintoApplet/*;do
|
||||
install -m 0755 "$file" $APPLETDIR/$PROJECT_NAME/
|
||||
done
|
||||
|
||||
for file in icons/*; do
|
||||
install -m 0755 "$file" $ICONDIR/
|
||||
done
|
||||
|
||||
echo "Finished Installing Applet. Restart or Re-login to find the applet in Budgie."
|
Reference in New Issue
Block a user