dotfiles/.config/sway/xhost-x11-root.sh

10 lines
127 B
Bash
Raw Permalink Normal View History

2025-05-12 14:24:58 +02:00
#!/bin/bash
repeat="30m"
xhost_while=0
while [ ${xhost_while} -eq 0 ] ; do
xhost +SI:localuser:root
sleep ${repeat}
done