Compare commits

..

No commits in common. "dfbd109c6e7c2dacdc7933fa0cfe9b27b37b6663" and "ba4f3a72a0d2dccc782524cf527b780b237a26f2" have entirely different histories.

3 changed files with 3 additions and 14 deletions

View File

@ -28,7 +28,7 @@ c.content.blocking.method = "both"
c.content.desktop_capture = "ask"
c.content.fullscreen.window = False
#c.content.javascript.enabled = True
c.content.javascript.enabled = True
c.content.local_content_can_access_remote_urls = True
c.content.notifications.presenter = "libnotify"
@ -67,7 +67,6 @@ c.url.default_page = local_startpage
c.url.open_base_url = True
searchengines = {
"sx": "https://searx.bocken.org/?q={}",
"brave": "https://search.brave.com/search?q={}&source=web",
"cactus": "https://latin.cactus2000.de/index.php?q={}",
"ddg": "https://duckduckgo.com/?q={}",
@ -80,7 +79,7 @@ searchengines = {
"re": "https://bocken.org/rezepte?q={}",
"yt": "https://www.youtube.com/results?search_query={}"
}
searchengines["DEFAULT"] = searchengines["sx"]
searchengines["DEFAULT"] = searchengines["ddg"]
c.url.searchengines = searchengines
c.zoom.default = "160%"

View File

@ -14,5 +14,4 @@ map i recolor
map p print
map g goto top
map <C-s> exec zathura_backward_search.sh
map <A-Return> exec "openfilebrowser $FILE"
map <C-h> exec "movepdf $FILE"
map <A-Return> exec openfilebrowser $FILE

View File

@ -1,9 +0,0 @@
#!/bin/sh
file="$1"
dest="$(find "$HOME" -maxdepth 5 -type d -not -path "$HOME/.*" | dmenu -i -p 'move to folder:')"
if ! [ -d "$dest" ]; then
mkdir -p "$dest"
fi
echo $dest
echo $file
mv "$file" "$dest"