ENH no need for weird rofi command

This commit is contained in:
Nathan Dwarshuis 2022-08-07 22:20:59 -04:00
parent 01cd96ebb4
commit a9b673ea57
1 changed files with 0 additions and 13 deletions

View File

@ -1,13 +0,0 @@
#! /bin/bash
# super hacky script to ensure rofi always appears on the focused workspace
# current-output is a script from rofi-extras that outputs the xrandr name of
# screen showing the focused workspace
if name=$(current-output); then
# putting the -m argument first should override any other -m arguments
# later in the args list
/usr/bin/rofi -m "$name" "$@"
else
/usr/bin/rofi "$@"
fi