mirror of
https://github.com/davatorium/rofi.git
synced 2024-11-11 13:50:48 -05:00
15 lines
253 B
Bash
Executable file
15 lines
253 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
echo -en "\x00prompt\x1ftesting\n"
|
|
echo -en "\0urgent\x1f0,2\n"
|
|
echo -en "\0active\x1f1\n"
|
|
echo -en "\0message\x1fSpecial <b>bold</b>message\n"
|
|
|
|
echo "aap"
|
|
echo "noot"
|
|
echo "mies"
|
|
echo "testing"
|
|
if [ -n "$@" ]
|
|
then
|
|
echo "$@"
|
|
fi
|