9 lines
285 B
Bash
Executable file
9 lines
285 B
Bash
Executable file
#!/usr/bin/sh
|
|
# Script to have rofi show and run aliases
|
|
|
|
rofi -run-list-command "alias | awk -F= \"{print \\\$1}\"" \
|
|
-run-command "/usr/bin/zsh -i -c '{cmd}'" \
|
|
-rnow -show-icons -matching "prefix" \
|
|
-display-combi "Start" \
|
|
-show combi -combi-modes "drun,run"
|
|
|