aboutsummaryrefslogtreecommitdiff
path: root/.config/awesome
diff options
context:
space:
mode:
authortdro <tdro@users.noreply.github.com>2020-01-01 18:43:19 -0500
committertdro <tdro@users.noreply.github.com>2020-01-01 18:43:19 -0500
commitc52d9ccd548db4580c253978ab5a0ca71482f19c (patch)
tree53130ef0f892d2d9db87496b32614c3e7d71a8e3 /.config/awesome
parent1e87e99066a475390136c35386e4e98e1b5c2733 (diff)
downloaddotfiles-c52d9ccd548db4580c253978ab5a0ca71482f19c.tar.gz
dotfiles-c52d9ccd548db4580c253978ab5a0ca71482f19c.tar.bz2
dotfiles-c52d9ccd548db4580c253978ab5a0ca71482f19c.zip
.config/awesome/scripts/file-search: Reduce search locations for speed
Diffstat (limited to '.config/awesome')
-rwxr-xr-x.config/awesome/scripts/file-search10
1 files changed, 9 insertions, 1 deletions
diff --git a/.config/awesome/scripts/file-search b/.config/awesome/scripts/file-search
index caa1850..2e59c7c 100755
--- a/.config/awesome/scripts/file-search
+++ b/.config/awesome/scripts/file-search
@@ -1,3 +1,11 @@
#!/bin/sh
-xdg-open "$(locate /home | rofi -font "ubuntu 12" -padding 20 -dmenu -i -p 'Files')"
+xdg-open "$(locate -l 100 \
+\
+/Documents \
+/Downloads \
+/.local/bin \
+/.config/awesome \
+/.vim \
+\
+| rofi -font "ubuntu 12" -padding 20 -dmenu -i -p 'Files')"