mirror of
https://github.com/rbreaves/kinto.git
synced 2025-08-13 22:29:16 +02:00
24 lines
547 B
Bash
Executable File
24 lines
547 B
Bash
Executable File
#!/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."
|