File: xdp

package info (click to toggle)
display-dhammapada 0.20-3
  • links: PTS
  • area: main
  • in suites: potato
  • size: 184 kB
  • ctags: 85
  • sloc: makefile: 276; ansic: 248; sh: 9
file content (12 lines) | stat: -rwxr-xr-x 459 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
# check if we are under X-Window
if [ "$DISPLAY" != "" ] && type xmessage >/dev/null 2>&1
then
# type `xlsfonts' and choose your font if you are
# getting message `cannot convert string `9x15bold' to ...'
	xmessage -font '9x15bold' -title 'The Dhammapada' -background black -bordercolor yellow -foreground yellow -center -xrm '*maxWidth: 800' "`display-dhammapada $@`" &
else
	tput bold || tput md
	display-dhammapada  "$@"
	tput sgr0 || tput me
fi