// Prepare
loadkeys de
timedatectl set-ntp true
// Partition Disk
fdisk:
- GPT
- sda1: EFI
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
#------------------------------------------------- | |
# file: twitcher.py | |
# author: Florian Ehmke | |
# description: dmenu for twitch streams | |
#------------------------------------------------- | |
import argparse | |
import requests | |
from subprocess import Popen, PIPE, STDOUT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# PS1 (prompt) colors (colornames refer to jwr theme) | |
DF="\e[0m" # refault | |
BW="\e[1;37m" # bold white | |
BR="\e[1;31m" # bold red | |
BB="\e[1;34m" # bold blue | |
BC="\e[1;32m" # bold cyan | |
BL="\e[1;33m" # bold light red | |
[[ -n "$SSH_CLIENT" ]] && HC=$BR || HC=$BB | |
# prepare bash prompt git support |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
#------------------------------------------------- | |
# description: toggle vibrance and brightness | |
# between normal and good-for-cs:go values. | |
#------------------------------------------------- | |
COLORS="Green Red Blue" | |
DISPLAY=[DPY:DVI-I-1] | |
CTRL_DISPLAY=:0 |