aboutsummaryrefslogtreecommitdiffhomepage
path: root/uzbl-browser
diff options
context:
space:
mode:
authorGravatar Dieter Plaetinck <dieter@plaetinck.be>2009-09-05 19:22:30 +0200
committerGravatar Dieter Plaetinck <dieter@plaetinck.be>2009-09-05 19:22:30 +0200
commitb9013fb779379c502b7707169eeac7dc15cfdd51 (patch)
tree8823d05881095396d90c12b01339d1c0acadc143 /uzbl-browser
parentac0be803633a44848f931d43bfd7f9f0faaaa1c4 (diff)
move 'uzbl' to more specific 'uzbl-core' program, and add 'uzbl-browser' script which wraps around it to make the browser
Diffstat (limited to 'uzbl-browser')
-rwxr-xr-xuzbl-browser9
1 files changed, 9 insertions, 0 deletions
diff --git a/uzbl-browser b/uzbl-browser
new file mode 100755
index 0000000..93ba2d7
--- /dev/null
+++ b/uzbl-browser
@@ -0,0 +1,9 @@
+#!/bin/sh
+# this script implements are more useful "browsing experience". make sure to have the event manager in the appropriate place.
+
+if [ x"$XDG_DATA_HOME" != 'x' ]
+then
+ uzbl-core "$@" | $XDG_DATA_HOME/uzbl/scripts/event_manager.py
+else
+ uzbl-core "$@" | $HOME/.local/share/uzbl/scripts/event_manager.py
+fi