diff options
| author | Nikita Langer <nikitalanger@icloud.com> | 2026-07-12 17:22:42 +0200 |
|---|---|---|
| committer | Nikita Langer <nikitalanger@icloud.com> | 2026-07-12 17:22:42 +0200 |
| commit | c3cbb7a6889c9de8640ba2b0a96043d3bca12aa7 (patch) | |
| tree | 185859afc193d5db66155e59f63966f4d24d3d6a | |
| download | scripts-master.tar.gz scripts-master.tar.bz2 scripts-master.tar.xz scripts-master.zip | |
| -rw-r--r-- | Makefile | 11 | ||||
| -rwxr-xr-x | update-xrdb.sh | 9 |
2 files changed, 20 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..c6bb20a --- /dev/null +++ b/Makefile @@ -0,0 +1,11 @@ +FILES = update-xrdb.sh +DIR = /usr/local/bin/ + +chmod: + chmod 777 *.sh + +install: + cp -f $(FILES) $(DIR) + +uninstall: + rm -f $(DIR)$(FILES) diff --git a/update-xrdb.sh b/update-xrdb.sh new file mode 100755 index 0000000..9a24dd7 --- /dev/null +++ b/update-xrdb.sh @@ -0,0 +1,9 @@ +#!/bin/bash + +wall=$1 + +wal -i $1 +xrdb -merge ~/.cache/wal/colors.Xresources +xrdb -merge ~/.cache/wal/xrdb_extra + +xdotool key Super_L+F5 |
