2020-09-17 10:24:35 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
DIR=$(readlink -f $(dirname $0))
|
|
|
|
. $DIR/../env.sh
|
|
|
|
|
|
|
|
# install ranger
|
|
|
|
case "$PM" in
|
|
|
|
apt)
|
|
|
|
! which pip3 && $ROOT/python/install.sh
|
2020-09-17 16:02:24 +00:00
|
|
|
sudo pip3 install ranger-fm ueberzug
|
2020-09-17 10:24:35 +00:00
|
|
|
;;
|
|
|
|
pacman)
|
2020-09-19 15:33:13 +00:00
|
|
|
sudo pip install ranger-fm ueberzug
|
2020-09-17 10:24:35 +00:00
|
|
|
;;
|
|
|
|
esac
|
2020-09-17 10:42:43 +00:00
|
|
|
|
2020-09-20 09:59:26 +00:00
|
|
|
# linking configuration files
|
|
|
|
lnsf $DIR/config/commands.py $XDG_CONFIG_HOME/ranger/commands.py
|
|
|
|
lnsf $DIR/config/rc.conf $XDG_CONFIG_HOME/ranger/rc.conf
|
|
|
|
lnsf $DIR/config/scope.sh $XDG_CONFIG_HOME/ranger/scope.sh
|
|
|
|
|
|
|
|
# install devicons
|
|
|
|
git clone --depth 1 https://github.com/alexanderjeurissen/ranger_devicons ~/.config/ranger/plugins/ranger_devicons
|