View .XCompose
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
# <https://gist.github.com/b6f7106e553b8c31723dc50c5aa1f1c2> | |
include "%L" | |
# Uncategorized {{{1 | |
<Multi_key> <equal> <equal> <equal> : "≡" U2261 # IDENTICAL TO | |
<Multi_key> <asterisk> <asterisk> : "∗" U2217 # ASTERISK OPERATOR | |
<Multi_key> <bracketleft> <o> <bar> : "⎄" U2384 # COMPOSITION SYMBOL | |
<Multi_key> <bracketleft> <O> <bar> : "⎄" U2384 # COMPOSITION SYMBOL | |
<Multi_key> <c> <m> <p> : "⎄" U2384 # COMPOSITION SYMBOL |
View tst-separator.url
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
data:text/html;charset=utf-8,<html id="separator" data-string="\u2013" data-length="35" data-background="GrayText" data-opacity="0.125"> <link rel="help" href="https://gist.github.com/f4c51606f99e990774133e9eb46905ee" /><script>addEventListener("load", () => { const html = document.documentElement; document.title = JSON.parse(`"${html.dataset.string.replace('"', '\\"')}"`).repeat(Number(html.dataset.length) || 1); const background = document.querySelector("[id='background']"); background.style.background = html.dataset.background || "unset"; background.style.opacity = html.dataset.opacity || "1"; });</script><style>body, [id="background"] { height: 100%; margin: 0; }</style><link rel="icon" type="image/png" href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAA |
View bw-session.sh
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
# Shell function to automatically manage the BW_SESSION environment variable | |
# for the Bitwarden CLI. Public domain via CC0. | |
# <https://gist.github.com/c0acd6bcafbc8af3dafefc90d1e0765d> | |
bw() { | |
local cmd="$1" | |
[ $# -ge 1 ] && shift || true | |
if [ x"$cmd" = x"unlock" ] && [ $# -eq 0 ]; then | |
local session="$(FORCE_COLOR=$(_bw_force_color) _bw_run "$cmd" --raw "$@")" | |
if [ x"$session" != x"" ]; then |
View frk-status
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 python3 | |
"""Get connection status for Franklin Wireless cellular hotspots. | |
Example script to store login information: | |
```sh | |
#!/bin/sh | |
set -e |
View firewall.nat6
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 | |
# NAT6 + masquerading firewall script | |
# https://github.com/akatrevorjay/openwrt-masq6 | |
# trevorj <github@trevor.joynson.io> | |
# | |
# You can configure in /etc/config/firewall per zone: | |
# * IPv4 masquerading | |
# option masq 1 | |
# * IPv6 masquerading |
View 7zt
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 python3 | |
"""A tar(1)-like interface for 7z(1).""" | |
import argparse | |
import os | |
import subprocess | |
import sys | |
View transparentwindow.py
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 python3 | |
# vim: set fdm=marker: | |
import atexit | |
import os | |
import sys | |
from typing import * | |
View facebook-messnger.make-stickers-larger.user.css
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
/* ==UserStyle== | |
@name Facebook Messenger - Make stickers larger | |
@namespace github.com/openstyles/stylus | |
@version 1.0.0 | |
@license 0BSD | |
@var text u-size "Size" 160px | |
==/UserStyle== */ | |
@-moz-document domain("www.messenger.com") { |
View cros-procfs-workaround
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 | |
# <https://gist.github.com/01e327e485cadee4c7c50ba191ae9e9f> | |
# Workaround for <https://bugs.chromium.org/p/chromium/issues/detail?id=1087937> | |
# Adapted from /u/ken_duda's comment: | |
# * <https://old.reddit.com/r/Crostini/comments/gsxx7o/userpid_namespaces_broken_in_crostini_83/fsqn1wj/> | |
# * <https://bugs.chromium.org/p/chromium/issues/detail?id=1087937#c6> |
View ora
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 python3 | |
# vim: set fdm=marker: | |
import argparse | |
import atexit | |
import base64 | |
import configparser | |
import datetime | |
import decimal | |
import os |
NewerOlder