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