summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2012-03-28 20:52:50 -0400
committerLuke Shumaker <LukeShu@sbcglobal.net>2012-03-28 20:52:50 -0400
commitbe87825a69b5d08f8525ff0a2e449330f087d741 (patch)
treedaa41c97644b6eba0e817fa1aff11835eec71903
My X program aliases
-rwxr-xr-xx-pdf9
-rwxr-xr-xx-terminal-emulator10
-rwxr-xr-xx-www-browser14
-rwxr-xr-xxmessage2
4 files changed, 35 insertions, 0 deletions
diff --git a/x-pdf b/x-pdf
new file mode 100755
index 0000000..020ff7e
--- /dev/null
+++ b/x-pdf
@@ -0,0 +1,9 @@
+#!/bin/sh
+
+if [ -x "`which okular 2>/dev/null`" ]; then
+ okular "$@"
+if [ -x "`which evince 2>/dev/null`" ]; then
+ evince "$@"
+elif [ -x "`which xpdf 2>/dev/null`" ]; then
+ xpdf "$@"
+fi
diff --git a/x-terminal-emulator b/x-terminal-emulator
new file mode 100755
index 0000000..f7290b4
--- /dev/null
+++ b/x-terminal-emulator
@@ -0,0 +1,10 @@
+#!/bin/sh
+if [ -x "`which emacsterm`" ]; then
+ emacsterm $@
+elif [ -x "`which urxvt`" ]; then
+ urxvt $@
+elif [ -x "`which gnome-terminal`" ]; then
+ gnome-terminal $@
+elif [ -x "`which xterm`"]; then
+ xterm $@
+fi
diff --git a/x-www-browser b/x-www-browser
new file mode 100755
index 0000000..0ead72a
--- /dev/null
+++ b/x-www-browser
@@ -0,0 +1,14 @@
+#!/bin/sh
+
+list='firefox iceweasel icecat conkeror'
+
+looking=true
+for prog in $list; do
+ if $looking && [ -n "`pgrep $prog`" ]; then
+ $prog $@
+ looking=false
+ fi
+done
+if $looking; then
+ conkeror $@
+fi
diff --git a/xmessage b/xmessage
new file mode 100755
index 0000000..bd30b5e
--- /dev/null
+++ b/xmessage
@@ -0,0 +1,2 @@
+#!/bin/sh
+gxmessage $@ -fn 'Monospace'