- User GV-USB2 Capture Card
- Use LiveSplit
- Show Input Display
This file contains hidden or 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 bash | |
| [[ $# != 2 ]] && exit -1 | |
| dvd_drive=$1 | |
| destination=$2 | |
| info=$(isoinfo -d -i /dev/sr0) | |
| block_size=$(grep -oP '(?<=Logical block size is: )\d+' <<< "$info") | |
| volume_size=$(grep -oP '(?<=Volume size is: )\d+' <<< "$info") |
This file contains hidden or 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
| import os | |
| import subprocess | |
| from libqtile import layout, hook, bar | |
| from libqtile.config import Key, Group, Screen | |
| from libqtile.lazy import lazy | |
| meta = "mod4" | |
| alt = "mod1" | |
| ctrl = "control" |
This file contains hidden or 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
| import java.net.CookieManager | |
| import java.net.URI | |
| import java.net.http.HttpClient | |
| import java.net.http.HttpRequest | |
| import java.net.http.HttpResponse | |
| val url = "https://bingosync.com" | |
| val cookieManager = CookieManager() |
This file contains hidden or 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
| # /etc/X11/xorg.conf.d/00-keyboard.conf | |
| Section "InputClass" | |
| Identifier "system-keyboard" | |
| MatchIsKeyboard "on" | |
| Option "XkbLayout" "de" | |
| Option "XkbVariant" "nodeadkeys" | |
| EndSection |