8 lines
257 B
Bash
8 lines
257 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
# Check for existence of vifm command. If found, substitute vifm with it.
|
||
|
type vifm >/dev/null 2>&1 && alias vm=vifm
|
||
|
|
||
|
# Check for existence of vifmrun command. If found, substitute vifm with it.
|
||
|
type vifmrun >/dev/null 2>&1 && alias vifm=vifmrun
|