mirror of
https://github.com/linuxserver/proot-apps.git
synced 2026-01-09 07:31:31 +08:00
20 lines
588 B
Bash
Executable File
20 lines
588 B
Bash
Executable File
#!/bin/bash
|
|
|
|
## Desktop and icons install ##
|
|
echo "Adding icon"
|
|
mkdir -p $HOME/.local/share/icons/hicolor/scalable/apps/
|
|
cp \
|
|
/usr/share/icons/hicolor/256x256/apps/beekeeper-studio.png \
|
|
$HOME/.local/share/icons/hicolor/scalable/apps/
|
|
echo "Adding start menu entry"
|
|
mkdir -p $HOME/.local/share/applications/
|
|
cp \
|
|
/usr/share/applications/beekeeperstudio-pa.desktop \
|
|
$HOME/.local/share/applications/
|
|
echo "Adding desktop shortcut"
|
|
mkdir -p $HOME/Desktop
|
|
cp \
|
|
/usr/share/applications/beekeeperstudio-pa.desktop \
|
|
$HOME/Desktop/
|
|
chmod +x $HOME/Desktop/beekeeperstudio-pa.desktop
|