sunhat/install/ulauncher.sh

14 lines
550 B
Bash
Raw Normal View History

if [ -n "$FORCE" ] || ! command -v ulauncher &>/dev/null; then
2024-05-26 18:09:34 -05:00
sudo add-apt-repository universe -y
sudo add-apt-repository ppa:agornostal/ulauncher -y
sudo apt update -y
sudo apt install -y ulauncher
2024-05-31 10:03:50 -05:00
# Start ulauncher to have it populate config before we overwrite
mkdir -p ~/.config/autostart/
2024-06-03 14:30:34 -05:00
cp $OMAKUB_PATH/configs/ulauncher.desktop ~/.config/autostart/ulauncher.desktop
gtk-launch ulauncher.desktop
sleep 2 # ensure enough time for ulauncher to set defaults
2024-06-03 14:30:34 -05:00
cp $OMAKUB_PATH/configs/ulauncher.json ~/.config/ulauncher/settings.json
2024-05-26 18:09:34 -05:00
fi