Skip to content

Instantly share code, notes, and snippets.

View Rellotscrewdriver's full-sized avatar
💻
learning C++ and godot

Rellot's screwdriver Rellotscrewdriver

💻
learning C++ and godot
  • UK, India
View GitHub Profile
@tremby
tremby / gist:1571705
Created January 6, 2012 18:08
wp -- set random or specified wallpaper for nitrogen
#!/bin/bash
WPDIR="$HOME/images/wallpaper"
random=true
apply=true
wpfile=""
function usage {
if [ $1 -eq 1 ]; then
@fnky
fnky / ANSI.md
Last active June 30, 2024 13:35
ANSI Escape Codes

ANSI Escape Sequences

Standard escape codes are prefixed with Escape:

  • Ctrl-Key: ^[
  • Octal: \033
  • Unicode: \u001b
  • Hexadecimal: \x1B
  • Decimal: 27