VIFM 0.14 - Linux - XTerm
I like to start vifm from the source code I compiled, so I made a script to launch it with both panels set to the home directory, and it works fine
#!/bin/bash
cd /home/bob/PROGRAM/BUILD_VIFM/BUILD_VIFM_0_14/vifm-0.14/src
# -c "cd /home/bob": Changes the directory of the first panel to /home/bob
# -c "wincmd w": Switches focus to the second panel
# -c "cd /home/bob": Changes the directory of the second panel to /home/bob
xterm -maximized -e ./vifm -c "cd /home/bob" -c "wincmd w" -c "cd /home/bob"
I added this script in -> System Settings > preferences -> startup Applications
Is it a good practice to do so ?
Thx