home: modify killall for wrapped apps, clean bashrcExtra
This commit is contained in:
parent
729a331ced
commit
c2292de2bc
1 changed files with 12 additions and 4 deletions
|
@ -102,13 +102,21 @@ in
|
||||||
rm = "trash-put";
|
rm = "trash-put";
|
||||||
emacs = "emacsclient -nw";
|
emacs = "emacsclient -nw";
|
||||||
};
|
};
|
||||||
# Change to directory when exiting ranger with Q
|
|
||||||
# https://github.com/ranger/ranger/issues/1554#issuecomment-491650123
|
|
||||||
bashrcExtra = ''
|
bashrcExtra = ''
|
||||||
function pdf {
|
# Modify killall for wrapped applications, e.g. firefox
|
||||||
pandoc "$1" -o "''${1%.*}.pdf" -V colorlinks=true -V linkcolor=blue
|
# killall firefox -> killall firefox || killall .firefox-wrapped
|
||||||
|
function killall {
|
||||||
|
`which killall` $1 || `which killall` .''${1}-wrapped
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# pandoc macro
|
||||||
|
# pandoc document.md -> pandoc document.md -o document.pdf ...
|
||||||
|
function pdf {
|
||||||
|
pandoc $1 -o ''${1%.*}.pdf -V colorlinks=true -V linkcolor=blue
|
||||||
|
}
|
||||||
|
|
||||||
|
# Change to directory when exiting ranger with Q
|
||||||
|
# https://github.com/ranger/ranger/issues/1554#issuecomment-491650123
|
||||||
function ranger {
|
function ranger {
|
||||||
local IFS=$'\t\n'
|
local IFS=$'\t\n'
|
||||||
local tempfile="$(mktemp -t tmp.XXXXXX)"
|
local tempfile="$(mktemp -t tmp.XXXXXX)"
|
||||||
|
|
Loading…
Add table
Reference in a new issue