Compare commits
2 Commits
ba4f3a72a0
...
dfbd109c6e
Author | SHA1 | Date | |
---|---|---|---|
dfbd109c6e | |||
35d8536fcf |
@ -28,7 +28,7 @@ c.content.blocking.method = "both"
|
|||||||
c.content.desktop_capture = "ask"
|
c.content.desktop_capture = "ask"
|
||||||
c.content.fullscreen.window = False
|
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.local_content_can_access_remote_urls = True
|
||||||
c.content.notifications.presenter = "libnotify"
|
c.content.notifications.presenter = "libnotify"
|
||||||
|
|
||||||
@ -67,6 +67,7 @@ c.url.default_page = local_startpage
|
|||||||
c.url.open_base_url = True
|
c.url.open_base_url = True
|
||||||
|
|
||||||
searchengines = {
|
searchengines = {
|
||||||
|
"sx": "https://searx.bocken.org/?q={}",
|
||||||
"brave": "https://search.brave.com/search?q={}&source=web",
|
"brave": "https://search.brave.com/search?q={}&source=web",
|
||||||
"cactus": "https://latin.cactus2000.de/index.php?q={}",
|
"cactus": "https://latin.cactus2000.de/index.php?q={}",
|
||||||
"ddg": "https://duckduckgo.com/?q={}",
|
"ddg": "https://duckduckgo.com/?q={}",
|
||||||
@ -79,7 +80,7 @@ searchengines = {
|
|||||||
"re": "https://bocken.org/rezepte?q={}",
|
"re": "https://bocken.org/rezepte?q={}",
|
||||||
"yt": "https://www.youtube.com/results?search_query={}"
|
"yt": "https://www.youtube.com/results?search_query={}"
|
||||||
}
|
}
|
||||||
searchengines["DEFAULT"] = searchengines["ddg"]
|
searchengines["DEFAULT"] = searchengines["sx"]
|
||||||
c.url.searchengines = searchengines
|
c.url.searchengines = searchengines
|
||||||
|
|
||||||
c.zoom.default = "160%"
|
c.zoom.default = "160%"
|
||||||
|
@ -14,4 +14,5 @@ map i recolor
|
|||||||
map p print
|
map p print
|
||||||
map g goto top
|
map g goto top
|
||||||
map <C-s> exec zathura_backward_search.sh
|
map <C-s> exec zathura_backward_search.sh
|
||||||
map <A-Return> exec openfilebrowser $FILE
|
map <A-Return> exec "openfilebrowser $FILE"
|
||||||
|
map <C-h> exec "movepdf $FILE"
|
||||||
|
9
.local/bin/tools/movepdf
Executable file
9
.local/bin/tools/movepdf
Executable file
@ -0,0 +1,9 @@
|
|||||||
|
#!/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"
|
Loading…
Reference in New Issue
Block a user