Files
Dotfiles/rofi/.local/bin/dmenu-power-menu
2025-01-11 19:00:02 -08:00

21 lines
473 B
Bash
Executable File

#!/usr/bin/env bash
# Simple stand-alone wrapper for rofi-power-menu.
#
# This script takes the same CLI arguments as rofi-power-menu.
#
# rofi-script-to-dmenu needs to be installed
# Use local rofi-power-menu if present. This makes developing easier.
command -v ./rofi-power-menu >/dev/null
powermenu_exists=$?
if [ $powermenu_exists -eq 0 ]
then
powermenu="./rofi-power-menu"
else
powermenu="rofi-power-menu"
fi
cmd="$powermenu $@"
rofi-script-to-dmenu "$cmd"