2024-06-03 18:25:43 -05:00
|
|
|
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
|
|
|
|
2024-05-31 12:52:37 -05:00
|
|
|
# Start ulauncher to have it populate config before we overwrite
|
2024-06-02 17:04:10 -05:00
|
|
|
mkdir -p ~/.config/autostart/
|
2024-06-03 18:38:59 -05:00
|
|
|
cp ~/.local/share/omakub/configs/ulauncher.desktop ~/.config/autostart/ulauncher.desktop
|
2024-05-31 17:36:02 -05:00
|
|
|
gtk-launch ulauncher.desktop
|
|
|
|
sleep 2 # ensure enough time for ulauncher to set defaults
|
2024-06-03 18:38:59 -05:00
|
|
|
cp ~/.local/share/omakub/configs/ulauncher.json ~/.config/ulauncher/settings.json
|
2024-05-26 18:09:34 -05:00
|
|
|
fi
|