Skip to content

Instantly share code, notes, and snippets.

@binarynoise
binarynoise / kitty-theme-listener.sh
Last active September 7, 2024 15:56
Kitty Theme Listener
#!/usr/bin/bash
IFS=$'\n'
changeTheme() {
case "$1" in
*dark*)
kitty +kitten themes --reload-in all Tango Dark
;;
*light* | *default*)
@binarynoise
binarynoise / vnc-server.sh
Created August 29, 2022 14:39
Virtual Display VNC-Server
#!/bin/bash
# https://github.com/dianariyanto/virtual-display-linux/
# https://bbs.archlinux.org/viewtopic.php?id=180904
# https://unix.stackexchange.com/questions/378373/add-virtual-output-to-xorg
set -euo pipefail
set -x
resolution="1920x1080"
screen="HDMI-2"