This commit is contained in:
2026-01-26 17:03:18 +01:00
parent cd1b7cc874
commit 1fe5d48f1b
110 changed files with 12381 additions and 224 deletions

16
local/bin/xrandr Executable file
View File

@@ -0,0 +1,16 @@
#!/bin/bash
#
# Wrapper for xrandr, so wallpaper and Conky are reloaded on resolution change.
#
# Copyright (C) 2022 Daniel Napora - maboxlinux.org
# Licensed under GPLv3
set -euo pipefail
/usr/bin/xrandr "$@"
if [[ "$@" == *"--output"* ]];then
nitrogen --restore
if pgrep conky;then
killall -SIGUSR1 conky 2> /dev/null
fi
fi