This repository has been archived on 2024-04-07. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/dotfiles/scripts/launcher

20 lines
441 B
Plaintext
Raw Normal View History

2022-02-12 03:01:37 +01:00
#!/usr/bin/env bash
2021-09-07 04:48:13 +02:00
# {%@@ if launcher == "fuzzel" @@%} #
which fuzzel &> /dev/null &&
exec fuzzel
# {%@@ elif launcher == "wofi" @@%} #
2020-11-03 06:15:23 +01:00
which wofi &> /dev/null &&
exec wofi \
--show drun \
--allow-images \
--no-actions \
--prompt 'Iniciar: ' \
2021-09-07 04:48:13 +02:00
# {%@@ elif launcher == "bmenu" @@%} #
2020-11-03 06:15:23 +01:00
which bmenu &> /dev/null &&
exec bmenu run
# {%@@ endif @@%} #
notify-send "Error" "Launcher program missing"