2019-07-04 08:28:06 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# Check for existence of vifm command. If found, substitute vifm with it.
|
|
|
|
type vifm >/dev/null 2>&1 && alias vm=vifm
|
|
|
|
|
2019-07-08 20:04:52 +00:00
|
|
|
# if vifm exists, also let me open current dir in vifm with vmm
|
|
|
|
type vifm >/dev/null 2>&1 && alias vmm="vifm ${PWD}"
|
|
|
|
|
2019-07-04 08:28:06 +00:00
|
|
|
# Check for existence of vifmrun command. If found, substitute vifm with it.
|
|
|
|
type vifmrun >/dev/null 2>&1 && alias vifm=vifmrun
|
2019-07-08 20:04:52 +00:00
|
|
|
|
|
|
|
|