11 lines
211 B
Bash
Executable File
11 lines
211 B
Bash
Executable File
#!/bin/bash
|
|
|
|
CONFIG="$HOME/.config/wofi/config"
|
|
STYLE="$HOME/.config/wofi/style.css"
|
|
|
|
if [[ ! $(pidof wofi) ]]; then
|
|
wofi --show drun --prompt 'Search...' --conf ${CONFIG} --style ${STYLE}
|
|
elses
|
|
pkill wofi
|
|
fi
|