1
0
mirror of https://gitlab.com/dbrw/ansible-setup.git synced 2026-02-05 21:45:32 +07:00

initial commit

This commit is contained in:
dbrw
2022-06-29 17:19:22 +07:00
commit 787bb4563f
181 changed files with 36597 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
#!/usr/bin/bash
### WARNING: Your distro might not put bash in this location.
### You could just use `/usr/bin/env bash` instead.
# only needed for debugging
exec >/tmp/udev.out 2>&1
HOME=/home/dim
XAUTHORITY=$HOME/.Xauthority
export XAUTHORITY HOME
DISPLAY=:0 ; export DISPLAY;
# Path to lock file
lock="/tmp/keyboard.lock"
# Lock the file (other atomic alternatives would be "ln" or "mkdir")
exec 9>"$lock"
if ! flock -n 9; then
notify-send -t 5000 "Keyboard script is already running."
exit 1
fi
/usr/bin/su dim -c "sleep 3; /usr//bin/xmodmap $HOME/.Xmodmap;" &
notify-send -t 2000 "Xmodmap finished" &
# The lock file will be unlocked when the script ends
echo '' > /tmp/keyboard.lock &
unset DISPLAY