mirror of
https://git.disroot.org/FollieHiyuki/dotfiles.git
synced 2024-11-25 00:38:23 -05:00
18 lines
291 B
Bash
18 lines
291 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
git clone https://github.com/soreau/wayland-logout.git
|
||
|
cd wayland-logout || exit
|
||
|
|
||
|
echo "Build wayland-logout"
|
||
|
meson build --prefix /usr
|
||
|
|
||
|
echo "Install wayland-logout"
|
||
|
if command -v doas >/dev/null
|
||
|
then
|
||
|
doas -- ninja -C build install
|
||
|
else
|
||
|
sudo ninja -C build install
|
||
|
fi
|
||
|
|
||
|
cd ..
|