You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
809 B
24 lines
809 B
#!/bin/bash
|
|
|
|
source common.sh
|
|
|
|
LOCALVIMRC="$main_dir/dotfiles/vim/init.vim"
|
|
|
|
VIMRC="/home/$USER/.vimrc"
|
|
VIMDIR="/home/$USER/"
|
|
|
|
if [ "$OS" == "Debian"]; then
|
|
sudo apt install libxext-dev libxcb1-dev libxcb-damage0-dev libxcb-dpms0-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 libgl-dev libegl-dev libpcre2-dev libevdev-dev uthash-dev libev-dev libx11-xcb-dev meson libpcre++-dev
|
|
|
|
git clone --single-branch --branch next-rebase --depth=1 https://github.com/ibhagwan/picom
|
|
cd picom
|
|
meson setup --buildtype=release . build
|
|
sudo ninja -C build install
|
|
fi
|
|
|
|
if [ "$OS" == "Arch"]; then
|
|
sudo pacman -S picom
|
|
fi
|
|
|
|
|