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/wdmenu
2021-09-06 23:51:02 -03:00

14 lines
362 B
Bash
Executable file

#!/bin/sh
# {%@@ if launcher == "fuzzel" @@%} #
command -v fuzzel > /dev/null &&
exec fuzzel --dmenu "$@"
# {%@@ elif launcher == "wofi" @@%} #
command -v wofi > /dev/null &&
exec wofi -d "$@"
# {%@@ elif launcher == "bmenu" @@%} #
command -v bemenu > /dev/null &&
exec bmenu "$@"
# {%@@ endif @@%} #
notify-send "Error" "Launcher program missing"