aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVasil Zlatanov <vasil.zlatanov@gmail.com>2015-04-22 23:29:34 +0200
committerVasil Zlatanov <vasil.zlatanov@gmail.com>2015-04-22 23:29:34 +0200
commitbfe3f27650474ef29bc99f5227520d58f74e906c (patch)
tree47c01cd8eaae908f662a2160a272f3b848aeca99
parent1272155720a681c9c9ededdd19f751e37c665c96 (diff)
downloaddotfiles-bfe3f27650474ef29bc99f5227520d58f74e906c.tar.gz
dotfiles-bfe3f27650474ef29bc99f5227520d58f74e906c.tar.bz2
dotfiles-bfe3f27650474ef29bc99f5227520d58f74e906c.zip
fixed spotlight with locate not escaping properly
-rw-r--r--LICENSE2
-rw-r--r--config/uzbl/config2
-rwxr-xr-xtools/firesend2
-rwxr-xr-xtools/spotlight4
4 files changed, 5 insertions, 5 deletions
diff --git a/LICENSE b/LICENSE
index 59fd821..088ab4b 100644
--- a/LICENSE
+++ b/LICENSE
@@ -15,4 +15,4 @@ as the name is changed.
THIS COMES WITH ABSOLUTELY NO WARRANTY TO THE UTMOST EXTENT
PERMITTED BY APPLICABLE LAW. THE AUTHOR(S) HAVE NO LIABILITY
TO ANYONE ABOUT ANYTHING AT ANY POINT IN TIME AND RETAIN THE
-RIGHT TO EAT NUTTELA WHENEVER THEY WANT.
+RIGHT TO EAT NUTELLA WHENEVER THEY WANT.
diff --git a/config/uzbl/config b/config/uzbl/config
index 7d2abe7..600e5e6 100644
--- a/config/uzbl/config
+++ b/config/uzbl/config
@@ -501,7 +501,7 @@ set formfiller spawn @scripts_dir/formfiller.sh
@cbind g> = event LAST_TAB
@cbind l = event NEXT_TAB
@cbind h = event PREV_TAB
-@cbind gi<index:>_ = event GOTO_TAB %s
+#@cbind gi<index:>_ = event GOTO_TAB %s
@cbind <Ctrl><Left> = event MOVE_CURRENT_TAB_LEFT
@cbind <Ctrl><Right> = event MOVE_CURRENT_TAB_RIGHT
@cbind gm<index:>_ = event MOVE_CURRENT_TAB %s
diff --git a/tools/firesend b/tools/firesend
index cec4379..6edcc61 100755
--- a/tools/firesend
+++ b/tools/firesend
@@ -1,2 +1,2 @@
#!/bin/bash
-$HOME/.tools/exec_to_workspace 2 firefox --new-tab $@
+$HOME/.tools/exec_to_workspace 2 firefox --new-tab $@ > /dev/null 2>&1
diff --git a/tools/spotlight b/tools/spotlight
index 24cdc87..a60a201 100755
--- a/tools/spotlight
+++ b/tools/spotlight
@@ -1,4 +1,4 @@
#!/bin/sh
source ~/.colors
-locate ~/ | dmenu -i -l 20 -sb $COLOR0 -nb $COLOR0 -nf $COLOR11 -sf $COLOR3 | xargs urxvt -e rifle -p0
-exit 0
+bullet=`locate ~/ | dmenu -i -l 20 -sb $COLOR0 -nb $COLOR0 -nf $COLOR11 -sf $COLOR3`
+urxvt -e rifle -p0 "$bullet"