Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions install-i3lock-color.sh
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
#!/bin/bash

LICENSE='/usr/share/licenses/i3lock-color/LICENSE'
SUDO='sudo'

[ "$UID" -eq 0 ] && unset SUDO

./build.sh
cd build
sudo make install
sudo install -Dm644 ../LICENSE "$LICENSE"
$SUDO make install
$SUDO install -Dm644 ../LICENSE "$LICENSE"

echo "i3lock-color installed. The binary and manpage listing are \`i3lock'.
The license can be found at $LICENSE
Expand Down