aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/configs/sampleconfig2
-rw-r--r--examples/configs/sampleconfig-dev3
2 files changed, 3 insertions, 2 deletions
diff --git a/examples/configs/sampleconfig b/examples/configs/sampleconfig
index 6121ac4..9bb0025 100644
--- a/examples/configs/sampleconfig
+++ b/examples/configs/sampleconfig
@@ -11,7 +11,7 @@
# You can use any command in place of spawn
set history_handler = spawn /usr/share/uzbl/examples/scripts/history.sh
set download_handler = spawn /usr/share/uzbl/examples/scripts/download.sh
-#set cookie_handler = spawn /usr/share/uzbl/examples/scripts/cookies.sh
+set cookie_handler = spawn /usr/share/uzbl/examples/scripts/cookies.sh
set minimum_font_size = 6
set font_size = 11
diff --git a/examples/configs/sampleconfig-dev b/examples/configs/sampleconfig-dev
index 939fa7e..c8eddd0 100644
--- a/examples/configs/sampleconfig-dev
+++ b/examples/configs/sampleconfig-dev
@@ -11,7 +11,7 @@
# Usually you want to spawn a script to handle things, but any command (such as sh) can be used
set history_handler = spawn ./examples/scripts/history.sh
set download_handler = spawn ./examples/scripts/download.sh
-#set cookie_handler = spawn ./examples/scripts/cookies.sh
+set cookie_handler = spawn ./examples/scripts/cookies.sh
set minimum_font_size = 6
set font_size = 11
@@ -104,6 +104,7 @@ bind r = reload
bind R = reload_ign_cache
bind + = zoom_in
bind - = zoom_out
+bind 0 = sh "echo set zoom_level = 1.0 > $4"
bind t = toggle_status
# Hilight matches. Notice the * after the slash - it makes the command incremental, i.e. gets called
# on every character you type. You can do `bind /_ = search %s' if you want it less interactive.