diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/dmenu_launcher | 2 | ||||
-rwxr-xr-x | bin/schemaspy | 3 | ||||
-rwxr-xr-x | bin/xman | 4 |
3 files changed, 7 insertions, 2 deletions
diff --git a/bin/dmenu_launcher b/bin/dmenu_launcher new file mode 100755 index 0000000..3409348 --- /dev/null +++ b/bin/dmenu_launcher @@ -0,0 +1,2 @@ +#!/usr/bin/env zsh +dmenu_path | dmenu -fn "DejaVuSansMono Nerd Font Mono-11.3;antialias=true;autohint=true" "$@" | ${SHELL:-"/bin/sh"} & diff --git a/bin/schemaspy b/bin/schemaspy new file mode 100755 index 0000000..7451993 --- /dev/null +++ b/bin/schemaspy @@ -0,0 +1,3 @@ +#!/bin/sh + +exec env java -jar /home/devi/devi/schemaspy/schemaspy-6.1.1-SNAPSHOT.jar "$@" @@ -1,7 +1,7 @@ #!/bin/sh # xmandoc MANPAGE - read manpage of possibly not installed package -xlocate "man/man..\?/$1\.[0-9]" 2>/dev/null | +SOCKS_PROXY=socks5://127.0.0.1:9050 xlocate "man/man..\?/$1\.[0-9]" 2>/dev/null | { grep . || { echo "xmandoc: No entry for $1 found." 1>&2 exit 1 @@ -9,7 +9,7 @@ xlocate "man/man..\?/$1\.[0-9]" 2>/dev/null | while read -r pkg page; do page=${page#* -> } # xbps-query --cat=$page ${pkg%-*} | mandoc -O width=205 -a - xbps-query --cat=$page ${pkg%-*} | + SOCKS_PROXY=socks5://127.0.0.1:9050 xbps-query --cat=$page ${pkg%-*} | mandoc -O width=205 -c | col -b | vim - -M -R \ -c 'set ft=man nomod nolist' \ |