aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/configs
diff options
context:
space:
mode:
authorGravatar Dieter Plaetinck <dieter@plaetinck.be>2009-04-27 21:25:35 +0200
committerGravatar Dieter Plaetinck <dieter@plaetinck.be>2009-04-27 21:25:35 +0200
commite04b4d1628000f185e4499c0bdd9d5a5a610fd15 (patch)
treeda52fc8217226182bfd62bc51bf91840fea7ae35 /examples/configs
parentda781760634d94c61dc268e3866f896cf9a50b7e (diff)
reorganize/refactor example scripts/config / bookmark file etc so that its easier for new users + separate config for development
Diffstat (limited to 'examples/configs')
-rw-r--r--examples/configs/sampleconfig41
-rw-r--r--examples/configs/sampleconfig-dev41
2 files changed, 82 insertions, 0 deletions
diff --git a/examples/configs/sampleconfig b/examples/configs/sampleconfig
new file mode 100644
index 0000000..b92acc2
--- /dev/null
+++ b/examples/configs/sampleconfig
@@ -0,0 +1,41 @@
+
+# example uzbl config. in a real config, we should obey the xdg spec
+
+# all keys in the behavior group are optional. if not set, the corresponding behavior is disabed.
+# bindings_internal denote keys to trigger actions internally in uzbl
+# bindings_external denote keys to trigger scripts outside uzbl
+
+# keyboard behavior is vimstyle by default (all actions -> 1 key). set
+# always_insert_mode to always be in insert mode and disable going out of it.
+# if you do this, make sure you've set a modkey so you can reach the actions
+# 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
+fifo_dir = /tmp
+always_insert_mode = 0
+modkey = Mod1
+show_status = 1
+status_top = 0
+
+[bindings_internal]
+back = b
+forward = m
+stop = s
+refresh = r
+reload = R
+home = h
+follow_link_here = f
+follow_link_new_tab = F
+follow_link_new_window = w
+zoom_in = +
+zoom_out = -
+toggle_status = t
+
+[bindings_external]
+/bin/bash /usr/share/uzbl/examples/scripts/insert_bookmark.sh = B
+/bin/bash /usr/share/uzbl/examples/scripts/load_url_from_history.sh = u
+/bin/bash /usr/share/uzbl/examples/scripts/load_url_from_bookmarks.sh = U
+
+[network]
diff --git a/examples/configs/sampleconfig-dev b/examples/configs/sampleconfig-dev
new file mode 100644
index 0000000..f7f3bb7
--- /dev/null
+++ b/examples/configs/sampleconfig-dev
@@ -0,0 +1,41 @@
+
+# example uzbl config. in a real config, we should obey the xdg spec
+
+# all keys in the behavior group are optional. if not set, the corresponding behavior is disabed.
+# bindings_internal denote keys to trigger actions internally in uzbl
+# bindings_external denote keys to trigger scripts outside uzbl
+
+# keyboard behavior is vimstyle by default (all actions -> 1 key). set
+# always_insert_mode to always be in insert mode and disable going out of it.
+# if you do this, make sure you've set a modkey so you can reach the actions
+# 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
+fifo_dir = /tmp
+always_insert_mode = 0
+modkey = Mod1
+show_status = 1
+status_top = 0
+
+[bindings_internal]
+back = b
+forward = m
+stop = s
+refresh = r
+reload = R
+home = h
+follow_link_here = f
+follow_link_new_tab = F
+follow_link_new_window = w
+zoom_in = +
+zoom_out = -
+toggle_status = t
+
+[bindings_external]
+/bin/bash ./examples/scripts/insert_bookmark.sh = B
+/bin/bash ./examples/scripts/load_url_from_history.sh = u
+/bin/bash ./examples/scripts/load_url_from_bookmarks.sh = U
+
+[network]