mirror of
https://github.com/yshui/picom.git
synced 2024-10-27 05:24:17 -04:00
34b2d75f91
Changed permissions of meson/install.sh from 644 to 755 to be able to run it via "./install.sh" without first executing "chmod +x install.sh".
11 lines
432 B
Bash
Executable file
11 lines
432 B
Bash
Executable file
#!/bin/sh
|
|
|
|
if [ ! -e "${MESON_INSTALL_DESTDIR_PREFIX}/bin/compton" ]; then
|
|
echo "Linking picom to ${MESON_INSTALL_DESTDIR_PREFIX}/bin/compton"
|
|
ln -s picom "${MESON_INSTALL_DESTDIR_PREFIX}/bin/compton"
|
|
fi
|
|
|
|
if [ ! -e "${MESON_INSTALL_DESTDIR_PREFIX}/bin/compton-trans" ]; then
|
|
echo "Linking picom-trans to ${MESON_INSTALL_DESTDIR_PREFIX}/bin/compton-trans"
|
|
ln -s picom-trans "${MESON_INSTALL_DESTDIR_PREFIX}/bin/compton-trans"
|
|
fi
|