05.08.2026

webtunnel [2001:db8:cc53:9d8f:41f4:ebdc:ef7d:adc1]:443 5AA94C138A5B9CCDB96EA0C7D6C587AF18230158 url=https://cdn.seo-manager.info/jXh2ONiCuMLsUyzJWq3HJaeE ver=0.0.3
webtunnel [2001:db8:cc50:fa:264f:d1b8:79a:6a81]:443 38C7ADB125A7AEA7A668C5AE300F6DCEA6BFB340 url=https://surf.mysticboarding.cz/S2vNtMmDc72E3uSmAroQaUyj ver=0.0.1

17.09.2025

#on/off second monitor

#!/bin/bash

pid=`sed '1q;d' /tmp/mon_switch.pid`

if [[ -z "$pid" ]]; then

xrandr --output DVI-I-0 --off & echo "off" > /tmp/mon_switch.pid

else

xrandr --output DVI-I-0 --auto --left-of DVI-I-1

xrandr --output DVI-I-1 --primary & echo "" > /tmp/mon_switch.pid

fi