dotfiles/ranger/install.sh

27 lines
829 B
Bash
Raw Normal View History

2020-11-02 04:08:18 +00:00
#!/bin/sh
2020-09-17 10:24:35 +00:00
2020-11-02 04:08:18 +00:00
DIR=$(readlink -f "$(dirname "$0")")
. "$DIR/../env.sh"
2020-09-17 10:24:35 +00:00
# install ranger
case "$PM" in
apt)
2020-09-22 10:40:26 +00:00
# atool/p7zip-full for archive previewing/extracting etc
sudo apt install -y atool p7zip-full unrar highlight
2020-11-02 04:08:18 +00:00
! command -v 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-10-30 18:27:01 +00:00
sudo pacman -S --needed atool
sudo pip install ranger-fm ueberzug p7zip unrar highlight
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
2020-11-02 04:08:18 +00:00
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"
2020-09-20 09:59:26 +00:00
# install devicons
git clone --depth 1 https://github.com/alexanderjeurissen/ranger_devicons ~/.config/ranger/plugins/ranger_devicons