jonaburg / picom

A lightweight compositor for X11 (previously a compton fork)
Other
956 stars 99 forks source link

[Feature Request] AUR Release #2

Closed p0da closed 4 years ago

p0da commented 4 years ago

Would you consider adding this picom fork to the AUR?

ceuk commented 4 years ago

Here you go in the meantime, quick and dirty :)

install-picom.sh

#!/bin/bash
echo "Cloning repository from Github"
git clone https://github.com/jonaburg/picom.git $HOME/.local/share/picom
echo "Installing dependencies"
sudo pacman -S meson gcc ninja libconfig dbus libev libglvnd libx11 libxcb libxdg-basedir libxext pcre pixman xcb-util-image xcb-util-renderutil asciidoc mesa uthash xorgproto xorg-xprop xorg-xwininfo
cd ~/.local/share/picom
git submodule update --init --recursive
echo "Building"
meson --buildtype=release . build
sudo ninja -C build
echo "Installing"
sudo ninja -C build install
echo "Done"

update-picom.sh

#!/bin/bash
echo "Updating from Github"
cd $HOME/.local/share/picom
git pull origin next
git submodule update --init --recursive
sudo ninja -C build
sudo ninja -C build install
jonaburg commented 4 years ago

I don't mind making an AUR package as soon as most of the larger bugs are ironed out. At the moment it's very experimental, and the code itself, albeit working, is messy. After that's more or less resolved, and the animation code is tied up in a bool, I'll be happy to either make it as a package, or see if anyone upstream is happy in having this feature added :)

Bug-Reaper commented 4 years ago

Thank you! @ceuk & @jonaburg