- 2x 400g vorgekochte Tortellini Spinat Ricotta
- 1 Hand Rucola
- 1 Becher Sahne
#!/bin/bash | |
# Tom Hale, 2016. MIT Licence. | |
# Print out 256 colours, with each number printed in its corresponding colour | |
# See http://askubuntu.com/questions/821157/print-a-256-color-test-pattern-in-the-terminal/821163#821163 | |
set -eu # Fail on errors or undeclared variables | |
printable_colours=256 |
This script provides a mode for rofi which gives you the commands to create screenshots and videos from your favorite terminal windows. (Other windows are also no problem, but who cares about gui windows.)
# based on this post | |
# https://askubuntu.com/questions/770733/how-to-install-package-from-testing | |
# install build tools | |
sudo apt-get install moreutils build-essential fakeroot devscripts dpkg-dev equivs | |
# create some build directory | |
mkdir build | |
cd build |
:set scrollopt+=hor | |
:set scrollopt-=ver | |
:set nowrap | |
:1split | |
:windo set scrollbind |
#!/usr/bin/env zsh | |
#trap 'tput csr 0 "$((LINES-1))"' INT | |
tput csr "2" "$((LINES-1))" | |
tput clear | |
echo CORNERTEXT | |
echo ${(r:${COLUMNS}::=:)${}} | |
tput rc | |
for i in {1..200}; do | |
tput sc |
#!/usr/bin/env zsh | |
# terminal to launch when splitting | |
# undefined window class. | |
# first choice urxvt fallback xterm. | |
terminal="${commands[urxvt]:-xterm}" | |
typeset -a allowed_actions=( | |
xbindkeys | |
start |
#!/usr/bin/env zsh | |
# _ _ | |
# __ _| | _____ _ _ ___ _______| |__ | |
# \ \/ / |/ / _ \ | | / __| |_ / __| '_ \ | |
# > <| < __/ |_| \__ \_ / /\__ \ | | | | |
# /_/\_\_|\_\___|\__, |___(_)___|___/_| |_| | |
# |___/ | |
last_class="none" | |
current_map=default |
#!/usr/bin/env zsh | |
MKTEMP_BIN="$(which mktemp)" | |
tempfiles="$(mktemp)" | |
function mktemp(){ | |
local filename="$($MKTEMP_BIN "${@}")" | |
echo "$filename" >> "$tempfiles" | |
echo "$filename" | |
} | |
function on_exit() { | |
test -f "$tempfiles" && { |