aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Dieter Plaetinck <dieter@plaetinck.be>2009-05-04 20:04:05 +0200
committerGravatar Dieter Plaetinck <dieter@plaetinck.be>2009-05-04 20:04:05 +0200
commit8776679111e15ae5522d42a5f92993a57d71832c (patch)
tree21f9e95d8442407d60d56f690854e678230f33b4
parentda643e8b7f0de88fa6ee2e7f1181746cda57a8ff (diff)
bookmarks location update + slight fixes re INSTALL file
-rw-r--r--INSTALL (renamed from INSTALLING)6
-rwxr-xr-xexamples/scripts/insert_bookmark.sh4
-rwxr-xr-xexamples/scripts/load_url_from_bookmarks.sh4
3 files changed, 7 insertions, 7 deletions
diff --git a/INSTALLING b/INSTALL
index e95f7a4..decf316 100644
--- a/INSTALLING
+++ b/INSTALL
@@ -16,7 +16,7 @@ From source
Dependencies
------------
-* git (for building)
+* git (for downloading)
* pkgconfig (for Make/gcc)
* libwebkit 1.1.4 or higher
* libsoup 2.24 or higher (dep for webkit/gtk+)
@@ -36,8 +36,8 @@ File locations
After installing - using either method - you will find:
* /usr/bin : uzbl [and uzblctrl]
-* /usr/share/uzbl/docs/ : documentation files included with uzbl. (readme, checklist,..)
-* /usr/share/uzbl/examples: sample scripts, config files and a sample bookmarks file.
+* /usr/share/uzbl/docs/ : documentation files included with uzbl. (readme, checklist, .. )
+* /usr/share/uzbl/examples: sample scripts, config files and a sample data (boomarks, .. )
You will probably want to change the scripts to behave more like you want, so copy the scripts to your home dir. If you save your config as
$XDG\_CONFIG\_HOME/uzbl/config (this expands to ~/.config/uzbl/config on most systems) it will be recognized automatically. You can also pass the path to
diff --git a/examples/scripts/insert_bookmark.sh b/examples/scripts/insert_bookmark.sh
index 5d76c35..98de4b0 100755
--- a/examples/scripts/insert_bookmark.sh
+++ b/examples/scripts/insert_bookmark.sh
@@ -1,9 +1,9 @@
#!/bin/bash
# you probably want your bookmarks file in your $XDG_DATA_HOME ( eg $HOME/.local/share/uzbl/bookmarks)
-if [ -f /usr/share/uzbl/examples/bookmarks ]
+if [ -f /usr/share/uzbl/examples/data/bookmarks ]
then
- file=/usr/share/uzbl/examples/bookmarks # you will probably get permission denied errors here. pick a file in your ~
+ file=/usr/share/uzbl/examples/data/bookmarks # you will probably get permission denied errors here. pick a file in your ~
else
file=./examples/bookmarks #useful when developing
fi
diff --git a/examples/scripts/load_url_from_bookmarks.sh b/examples/scripts/load_url_from_bookmarks.sh
index 2a893bf..f8e2b53 100755
--- a/examples/scripts/load_url_from_bookmarks.sh
+++ b/examples/scripts/load_url_from_bookmarks.sh
@@ -1,9 +1,9 @@
#!/bin/bash
# you probably want your bookmarks file in your $XDG_DATA_HOME ( eg $HOME/.local/share/uzbl/bookmarks)
-if [ -f /usr/share/uzbl/examples/bookmarks ]
+if [ -f /usr/share/uzbl/examples/data/bookmarks ]
then
- file=/usr/share/uzbl/examples/bookmarks
+ file=/usr/share/uzbl/examples/data/bookmarks
else
file=./examples/bookmarks #useful when developing
fi