30 lines
609 B
Bash
30 lines
609 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
DIR=$(readlink -f $(dirname $0))
|
||
|
. $DIR/../env.sh
|
||
|
|
||
|
|
||
|
# install office utilities
|
||
|
case "$PM" in
|
||
|
apt)
|
||
|
sudo apt install -y \
|
||
|
chromium-browser \
|
||
|
zathura zathura-pdf-poppler sxiv \
|
||
|
flameshot \
|
||
|
keepassxc \
|
||
|
libreoffice \
|
||
|
gimp
|
||
|
;;
|
||
|
pacman)
|
||
|
sudo pacman -S \
|
||
|
chromium \
|
||
|
zathura zathura-pdf-mupdf sxiv\
|
||
|
flameshot \
|
||
|
keepassxc \
|
||
|
libreoffice-fresh \
|
||
|
gimp
|
||
|
;;
|
||
|
esac
|
||
|
|
||
|
# symlink configuration
|
||
|
lnsf $DIR/config/zathura ~/.config/zathura
|