mirror of
https://github.com/ItsDrike/dotfiles.git
synced 2024-11-10 10:39:41 +00:00
10 lines
352 B
Plaintext
10 lines
352 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
# Compatibility executable script for applications running dmenu, which
|
||
|
# runs wofi in dmenu mode instead. Note: In many cases the arguments won't
|
||
|
# be compatible and this will fail, however the primary way scripts use
|
||
|
# dmenu is just for simple prompts, using the `-p` flag. and wofi does fully
|
||
|
# support this usage.
|
||
|
|
||
|
cat | wofi --dmenu $@
|