File: test_script_mode.sh

package info (click to toggle)
rofi 2.0.0-0.2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 3,472 kB
  • sloc: ansic: 36,245; lex: 957; yacc: 920; xml: 858; sh: 384; makefile: 17
file content (29 lines) | stat: -rwxr-xr-x 640 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/usr/bin/env bash

if [ "$*" = "quit" ]; then
	exit 0
fi

if [ "$@" ]; then
	# Override the previously set prompt.
	echo -en "\x00prompt\x1fChange prompt\n"
	for a in {1..10}; do
		echo "$a"
	done
	echo "quit"
else
	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 -en "aap\0icon\x1ffolder\n"
	echo -en "blob\0icon\x1ffolder\x1fdisplay\x1fblub\n"
	echo "noot"
	echo "mies"
	echo -en "-------------\0nonselectable\x1ftrue\x1fpermanent\x1ftrue\n"
	echo "testing"
	echo "<b>Bold</b>"
	echo "quit"
fi