aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--TODO1
-rw-r--r--examples/configs/sampleconfig10
-rw-r--r--examples/configs/sampleconfig-dev10
3 files changed, 10 insertions, 11 deletions
diff --git a/TODO b/TODO
index 80440a3..2c9f8d1 100644
--- a/TODO
+++ b/TODO
@@ -6,7 +6,6 @@ ASAP
* when launching new instance, don't just try 'uzbl' and then './uzbl', rather launch a new uzbl in the same way the current uzbl instance was started. (same command, same arguments, except --uri)
* where to put proxy config? webkit support? depend on libsoup?
* compare libsoup to curl backend. there are probably performance differences
-* check configured commands if they end on .sh so users don't need to prepend /bin/<shell>
* implement a more advanced dmenu alike that behaves like FF's awesomebar and where you can search in url + window title
* recognize -h with GOption?
* implement a vimperator-like link following scheme. but let user pick his favorite characters to construct the "link identifiers" with.
diff --git a/examples/configs/sampleconfig b/examples/configs/sampleconfig
index 2f9df6f..0f2fa5f 100644
--- a/examples/configs/sampleconfig
+++ b/examples/configs/sampleconfig
@@ -11,8 +11,8 @@
# from insert mode by combining them with the modkey
[behavior]
-history_handler = /bin/bash /usr/share/uzbl/examples/scripts/history.sh
-download_handler = /bin/bash /usr/share/uzbl/examples/scripts/download.sh
+history_handler = /usr/share/uzbl/examples/scripts/history.sh
+download_handler = /usr/share/uzbl/examples/scripts/download.sh
fifo_dir = /tmp
socket_dir = /tmp
always_insert_mode = 0
@@ -39,9 +39,9 @@ w = follow_link_new_window
t = toggle_status
ZZ = exit
i = insert_mode
-B = spawn /bin/bash /usr/share/uzbl/examples/scripts/insert_bookmark.sh
-u = spawn /bin/bash /usr/share/uzbl/examples/scripts/load_url_from_history.sh
-U = spawn /bin/bash /usr/share/uzbl/examples/scripts/load_url_from_bookmarks.sh
+B = spawn /usr/share/uzbl/examples/scripts/insert_bookmark.sh
+u = spawn /usr/share/uzbl/examples/scripts/load_url_from_history.sh
+U = spawn /usr/share/uzbl/examples/scripts/load_url_from_bookmarks.sh
[network]
diff --git a/examples/configs/sampleconfig-dev b/examples/configs/sampleconfig-dev
index 9fcc906..7cbf8b4 100644
--- a/examples/configs/sampleconfig-dev
+++ b/examples/configs/sampleconfig-dev
@@ -11,8 +11,8 @@
# from insert mode by combining them with the modkey
[behavior]
-history_handler = /bin/bash ./examples/scripts/history.sh
-download_handler = /bin/bash ./examples/scripts/download.sh
+history_handler = ./examples/scripts/history.sh
+download_handler = ./examples/scripts/download.sh
fifo_dir = /tmp
socket_dir = /tmp
always_insert_mode = 0
@@ -39,8 +39,8 @@ w = follow_link_new_window
t = toggle_status
ZZ = exit
i = insert_mode
-B = spawn /bin/bash ./examples/scripts/insert_bookmark.sh
-u = spawn /bin/bash ./examples/scripts/load_url_from_history.sh
-U = spawn /bin/bash ./examples/scripts/load_url_from_bookmarks.sh
+B = spawn ./examples/scripts/insert_bookmark.sh
+u = spawn ./examples/scripts/load_url_from_history.sh
+U = spawn ./examples/scripts/load_url_from_bookmarks.sh
[network]