Skip to content

Instantly share code, notes, and snippets.

View CaffeineOnIce's full-sized avatar

Sam CaffeineOnIce

View GitHub Profile
@CaffeineOnIce
CaffeineOnIce / install.sh
Last active May 16, 2025 06:37
Automated script for installing OMZ without the chsh check
main() {
# Use colors, but only if connected to a terminal, and that terminal
# supports them.
if which tput >/dev/null 2>&1; then
ncolors=$(tput colors)
fi
if [ -t 1 ] && [ -n "$ncolors" ] && [ "$ncolors" -ge 8 ]; then
RED="$(tput setaf 1)"
GREEN="$(tput setaf 2)"
YELLOW="$(tput setaf 3)"
@CaffeineOnIce
CaffeineOnIce / conky.conf
Last active April 29, 2025 13:25
Well, pretty much my current Conky setup
conky.config = {
alignment = 'top_right',
background = false,
border_width = 0,
cpu_avg_samples = 2,
default_color = 'white',
default_outline_color = 'white',
default_shade_color = 'white',
double_buffer = true,
draw_borders = false,