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

17 lines
326 B
Bash
Executable File

#!/bin/sh
# {%@@ if launcher == "wofi" @@%} #
which wofi &> /dev/null &&
exec wofi \
--show drun \
--allow-images \
--no-actions \
--prompt 'Iniciar: ' \
# {%@@ else @@%} #
which bmenu &> /dev/null &&
exec bmenu run
# {%@@ endif @@%} #
notify-send "Error" "Launcher program missing"