Skip to content

Instantly share code, notes, and snippets.

View llamakc's full-sized avatar
🏠
Working from home

K L Clark llamakc

🏠
Working from home
View GitHub Profile

Linux:

timedatectl set-local-rtc 1 --adjust-system-clock

Windows:

  • Navigate to the following key in the left pane of the registry editor:
@llamakc
llamakc / oh-my-zsh
Created August 8, 2021 12:57 — forked from dynax60/oh-my-zsh
Oh-my-zsh on OpenBSD
export PKG_PATH=ftp://ftp.openbsd.org/pub/OpenBSD/5.0/packages/i386
$ sudo pkg_add -v zsh-4.3.12 git-1.7.6p0
$ chsh -s /usr/local/bin/zsh
$ git clone git://github.com/robbyrussell/oh-my-zsh.git
$ mv oh-my-zsh .oh-my-zsh
$ cp .oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc
@llamakc
llamakc / xfce4-terminal-inner-window-gap
Created November 6, 2020 21:26
How to add padding (inner window border/gap) to xfce4-terminal
If you're using a GTK3 build (uses vte3), you can put this in ~/.config/gtk-3.0/gtk.css:
VteTerminal, vte-terminal {
padding: 16px;
}