2024-04-13 19:16:54 -07:00

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