diff options
author | ensa <psii@riseup.net> | 2020-08-15 23:07:00 -0700 |
---|---|---|
committer | ensa <psii@riseup.net> | 2020-08-15 23:07:00 -0700 |
commit | 3f4e930385675a4613db5f12b19557b126c29559 (patch) | |
tree | 052b8a6d2ce5a41d984b3b46c2a15308137d2251 /config/ksh | |
parent | eec480ccb22f3166d723befc9522e8a25eabf8c1 (diff) | |
download | cfg-3f4e930385675a4613db5f12b19557b126c29559.tar.gz |
update, fixes
bin/fl: removed unnecessary newline escapes config/ X11/ xprofile: added dvorak programmer replaced unclutter with xbanish xresources: switch to hermit for font aliasrc: lynx vikeys color/colors.sh: fixed & portablized color grabbing cwmrc: removed dunst/dunstrc: switch to hermit for font ksh/ functions/ man_complete: now uses ~cache mpvpin: args improved kshrc: added FCEDIT removed uptime from PF_INFO prompt.ksh: shored up lf/lfrc: prompt made more consistent with ksh's ncmpcpp/config: paths updated newsboat/config: path updated shrc: LAUNCHER added LOCK switched to xlockmore
Diffstat (limited to 'config/ksh')
-rw-r--r-- | config/ksh/functions/man_complete | 2 | ||||
-rw-r--r-- | config/ksh/functions/mpvpin | 2 | ||||
-rw-r--r-- | config/ksh/kshrc | 3 | ||||
-rw-r--r-- | config/ksh/prompt.ksh | 2 |
4 files changed, 5 insertions, 4 deletions
diff --git a/config/ksh/functions/man_complete b/config/ksh/functions/man_complete index 291db3d..bab26dd 100644 --- a/config/ksh/functions/man_complete +++ b/config/ksh/functions/man_complete @@ -1,4 +1,4 @@ #!/bin/ksh man_complete() { - set -A complete_man -- $(<$HOME/.cache/ksh/precompletions/manpages) + set -A complete_man -- $(<~cache/ksh/precompletions/manpages) } diff --git a/config/ksh/functions/mpvpin b/config/ksh/functions/mpvpin index 0cc3cf5..7fabc6c 100644 --- a/config/ksh/functions/mpvpin +++ b/config/ksh/functions/mpvpin @@ -1,4 +1,4 @@ #!/bin/ksh mpvpin() { - mpv --input-ipc-server=/tmp/mpv-socket$(date +%s) --quiet --title "PIN" "$1" >/dev/null 2>&1 & + mpv --no-terminal --title "PIN" "$1" >/dev/null 2>&1 & } diff --git a/config/ksh/kshrc b/config/ksh/kshrc index e81bd97..a5b48e0 100644 --- a/config/ksh/kshrc +++ b/config/ksh/kshrc @@ -10,6 +10,7 @@ if ! [[ -d $(dirname $HISTFILE) ]]; then fi HISTSIZE=5000 HISTCONTROL="ignoredups" +FCEDIT="$EDITOR" TMPDIR=$XDG_CACHE_HOME/ksh if ! [[ -d $TMPDIR ]]; then mkdir -p $TMPDIR; @@ -17,7 +18,7 @@ fi # shortcut for cloning GITHUB="https://github.com" # make pfetch show what i want -export PF_INFO="ascii title os host shell editor wm pkgs uptime palette" +export PF_INFO="ascii title os host shell editor wm pkgs palette" # fix manpath so local man pages work # crude *bsd detection if [[ -d /usr/X11R6 ]]; then diff --git a/config/ksh/prompt.ksh b/config/ksh/prompt.ksh index 6ef4c34..80de942 100644 --- a/config/ksh/prompt.ksh +++ b/config/ksh/prompt.ksh @@ -17,4 +17,4 @@ vcs() { printf ' %s' "$_GIT_BRANCH" fi } -PS1='\[\033[0;7;32m\]$?\[\033[0;32;45m\]$SEP\[\033[0;7;35m\]\A$RSEP\[\033[0;1;31m\]\u\[\033[0;32m\]@\[\033[1;34m\]\h\[\033[7;36m\]$SEP\[\033[7m\]\w$RSEP\[\033[0;32m\]$(vcs)\n\[\033[0;32m\]\$\[\033[0m\] ' +PS1='\[\033[0;7;32m\]$?\[\033[0;32;45m\]$SEP\[\033[0;7;35m\]\A\[\033[0;35m\]$SEP\[\033[0;1;31m\]\u\[\033[0;32m\]@\[\033[1;34m\]\h\[\033[0;36m\]$RSEP\[\033[7m\]\w\[\033[0;36m\]$SEP\[\033[0;32m\]$(vcs)\n\$\[\033[0m\] ' |