mirror of
https://github.com/davatorium/rofi.git
synced 2024-10-27 05:23:18 -04:00
17 lines
307 B
Bash
Executable file
17 lines
307 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 "\0markup-rows\x1ftrue\n"
|
|
echo -en "\0message\x1fSpecial <b>bold</b>message\n"
|
|
|
|
echo "aap"
|
|
echo "noot"
|
|
echo "mies"
|
|
echo "testing"
|
|
echo "<b>Bold</b>"
|
|
if [ -n "$@" ]
|
|
then
|
|
echo "$@"
|
|
fi
|