mirror of
https://git.disroot.org/FollieHiyuki/dotfiles.git
synced 2024-11-25 00:38:23 -05:00
4a8718a544
And some clean up
13 lines
188 B
Bash
Executable File
13 lines
188 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
set -e
|
|
|
|
git clone https://github.com/soreau/wayland-logout.git
|
|
cd wayland-logout
|
|
|
|
echo "Build wayland-logout"
|
|
meson build --prefix $HOME/.local
|
|
ninja -C build install
|
|
|
|
cd ..
|