Use rifle instead of xdg-open if available
This commit is contained in:
parent
e73ce2bd18
commit
0937e73ed9
|
@ -29,11 +29,15 @@ alias sudo="sudo "
|
||||||
alias S='sudo $(history -n -1)'
|
alias S='sudo $(history -n -1)'
|
||||||
|
|
||||||
alias rm="rm -I"
|
alias rm="rm -I"
|
||||||
function v() {
|
if exists rifle; then
|
||||||
for file in $@; do
|
alias v=rifle
|
||||||
xdg-open $file &|
|
else
|
||||||
done
|
function v() {
|
||||||
}
|
for file in $@; do
|
||||||
|
xdg-open $file &|
|
||||||
|
done
|
||||||
|
}
|
||||||
|
fi
|
||||||
|
|
||||||
alias vmemcache="vmtouch -l -m 12G -v"
|
alias vmemcache="vmtouch -l -m 12G -v"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue