dotfiles/picom/install.sh

34 lines
1.0 KiB
Bash
Raw Normal View History

2020-09-17 16:02:24 +00:00
#!/bin/bash
DIR=$(readlink -f $(dirname $0))
. $DIR/../env.sh
2020-09-18 04:16:15 +00:00
PICOM_VER=v8.1
2020-09-17 16:02:24 +00:00
# install ranger
case "$PM" in
apt)
# install build tools
! which pip3 && $ROOT/python/install.sh
2020-09-18 04:16:15 +00:00
sudo pip3 install meson
2020-09-17 16:02:24 +00:00
# install dependencies
2020-09-18 04:16:15 +00:00
sudo apt install -y ninja-build libxext-dev libxcb1-dev libxcb-damage0-dev libxcb-xfixes0-dev libxcb-shape0-dev libxcb-render-util0-dev libxcb-render0-dev libxcb-randr0-dev libxcb-composite0-dev libxcb-image0-dev libxcb-present-dev libxcb-xinerama0-dev libxcb-glx0-dev libpixman-1-dev libdbus-1-dev libconfig-dev libgl1-mesa-dev libpcre3-dev libevdev-dev uthash-dev libev-dev libx11-xcb-dev
2020-09-17 16:02:24 +00:00
;;
pacman)
2020-09-18 18:01:58 +00:00
sudo pacman -S --needed uthash ninja meson
2020-09-17 16:02:24 +00:00
;;
esac
2020-09-18 18:01:58 +00:00
# build and install picom-next
curl -sLo https://github.com/yshui/picom/archive/next.zip /tmp/picom-next.zip
unzip /tmp/picom-next.zip -d /tmp
pushd /tmp/picom-next
meson --buildtype=release . build
sudo ninja -C build install
popd
rm -rf /tmp/picom*
# configuration
2020-09-18 04:16:15 +00:00
lnsf $DIR/config ~/.config/picom