mirror of
https://github.com/rbreaves/kinto.git
synced 2025-08-14 14:49:14 +02:00
- Added Linux system tray files WIP
This commit is contained in:
26
xkeysnail-config/trayapps/BudgieApplet/remove-applet.sh
Executable file
26
xkeysnail-config/trayapps/BudgieApplet/remove-applet.sh
Executable file
@@ -0,0 +1,26 @@
|
||||
#!/bin/bash
|
||||
|
||||
APPLETDIR=/usr/lib/budgie-desktop/plugins
|
||||
|
||||
ICONDIR=/usr/share/pixmaps
|
||||
|
||||
PROJECT_NAME='org.budgie-desktop.applet.kinto'
|
||||
|
||||
echo "Removing Budgie Kinto Applet....."
|
||||
|
||||
mkdir -p $APPLETDIR/$PROJECT_NAME
|
||||
|
||||
for file in $APPLETDIR/$PROJECT_NAME/*;do
|
||||
echo "rm $file"
|
||||
# rm $APPLETDIR/$PROJECT_NAME/$file
|
||||
done
|
||||
|
||||
sudo rm -rf $APPLETDIR/$PROJECT_NAME
|
||||
|
||||
for file in icons/*; do
|
||||
file=${file//icons/}
|
||||
echo "rm $ICONDIR$file"
|
||||
sudo rm $ICONDIR/$file
|
||||
done
|
||||
|
||||
echo "Finished Removing Kinto Applet. Restart or Re-login to find the applet in Budgie."
|
Reference in New Issue
Block a user