Moved to Luzifer/arch-update
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/bash | |
set -euxo pipefail | |
FPS=(25 30) | |
CODEC=(libx264 nvenc_h264) | |
rm -f out*.mp4 | |
for n in $(seq -f '%03.0f' 0 999); do | |
[ -f "${n}.png" ] || convert \ |
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/bash | |
set -euo pipefail | |
: ${DELETE_OLDER_THAN:=0} # When to delete tags by time (days) | |
: ${PROJECT:=${1:-}} # Which project to clean | |
COLOR_RED="\033[0;31m" | |
COLOR_GREEN="\033[0;32m" | |
COLOR_CYAN="\033[0;36m" | |
COLOR_YELLOW="\033[0;33m" |
This repo contains an approach to create a reproducible configuration (as far as possible) for Firefox on my Linux system.
- Put
mkuserjs.sh
into your~/.mozilla/firefox/<profile id>
folder - Create your own
user_js_customize.sh
file next to it - Execute the
mkuserjs.sh
file:bash mkuserjs.sh
- Review the diff and decide whether to write or to discard the change
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
// ==UserScript== | |
// @name Free sites from replug.io | |
// @namespace https://luzifer.io/ | |
// @version 0.1.1 | |
// @description Break framed websites free from their replug.io framing | |
// @author Knut Ahlers | |
// @match https://rplg.co/* | |
// @grant none | |
// ==/UserScript== |
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
pkgname=consul-bin | |
pkgver=1.4.0 | |
pkgrel=1 | |
pkgdesc="A tool for service discovery, monitoring and configuration." | |
arch=('x86_64') | |
url="https://www.consul.io" | |
license=('MPL2') | |
depends=('glibc') | |
conflicts=('consul') | |
source=("${pkgname}-${pkgver}.zip::https://releases.hashicorp.com/consul/${pkgver}/consul_${pkgver}_linux_amd64.zip" |
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
pkgbase = getxkblayout | |
pkgdesc = Simple CLI command to read current active KB map from X server | |
pkgver = 0.0.1 | |
pkgrel = 1 | |
url = https://gist.github.com/Luzifer/dccae45747a1dad41f011a01c75296a3 | |
arch = x86_64 | |
license = Apache | |
makedepends = gcc | |
makedepends = libx11 | |
makedepends = libxkbfile |
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
import flask | |
import gzip | |
import json | |
import requests | |
import sys | |
import xml.etree.ElementTree as ET | |
REPO_URL = "https://dl.google.com/linux/chrome/rpm/stable/x86_64/repodata/other.xml.gz" | |
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
Section "InputClass" | |
Identifier "Touchpads" | |
Driver "mtrack" | |
MatchIsTouchpad "on" | |
Option "TrackpadDisable" "0" # Disables trackpad touch input. A value of 1 will enable the trackpad. | |
# A value of 1 will disable tapping and gestures but not movement. A value | |
# of 2 will disable all input. A value of 3 will also disable physical | |
# buttons. Integer. Default is 0. |
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
arduino | |
d-feet |