17 lines
634 B
Bash
Executable file
17 lines
634 B
Bash
Executable file
#!/bin/sh
|
|
# ./install.sh [DESTDIR] [BINDIR]
|
|
: "${DOTOOL_VERSION=$(git describe --long --abbrev=12 --tags --dirty 2>/dev/null || echo 1.2)}"
|
|
|
|
go build -ldflags "-X main.Version=$DOTOOL_VERSION" || exit
|
|
mkdir -p "$1/${2:-usr/local/bin}" || exit
|
|
cp -v dotool dotoolc dotoold "$1/${2:-usr/local/bin}" || exit
|
|
mkdir -p "$1/etc/udev/rules.d" || exit
|
|
cp -v 80-dotool.rules "$1/etc/udev/rules.d" || exit
|
|
|
|
# Remove files from before the keyboard layout approach changed
|
|
rm -f "$1/usr/share/X11/xorg.conf.d/50-dotool.conf"
|
|
rm -f "$1/etc/sway/config.d/dotool"
|
|
|
|
# Make the new/updated udev rule effective
|
|
udevadm control --reload
|
|
udevadm trigger
|