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
[Desktop Entry] | |
Version=1.0 | |
Name=Kitty (Neovim) | |
GenericName=Text Editor | |
Comment=Neovim in Kitty | |
Keywords=kitty;nvim;neovim | |
Icon=kitty | |
Terminal=false | |
X-MultipleArgs=false | |
Type=Application |
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
function! MoveWindow(dir) | |
let l:orig_win = winnr() | |
let l:orig_buf = bufnr() | |
exe 'wincmd ' . a:dir | |
let l:dest_win = winnr() | |
let l:dest_buf = bufnr() | |
exe l:orig_win . 'windo hide buf' l:dest_buf | |
exe l:dest_win . 'windo hide buf' l:orig_buf | |
endfunction | |
nnoremap <M-S-h> :call MoveWindow('h')<Cr> |
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
#compdef git-tag-version | |
# zsh completion for git-tag-version | |
_git-tag-version () { | |
_arguments -S -s "-h[usage]" "1:version-name" "2:from:__git_commits" "3:to:__git_commits" | |
} |
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 bash | |
set -euo pipefail | |
shopt -s inherit_errexit | |
function main() { | |
local -i row_width=${1:-990} | |
local -i total_height=${2:-500} | |
local -i row_height=$((total_height / 4)) | |
local mods=".w${row_width}.h${row_height}.d" |
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 | |
# Helper for yglu to assist with importing yaml files into the document | |
# root. | |
# | |
# Depends: yglu - https://github.com/lbovet/yglu/ | |
# | |
# Copyright (c) 2020-2021 Maddison Hellstrom <github.com/b0o>, MIT License. | |
set -euo pipefail |
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
const union = (...sets) => new Set(sets.flatMap(s => [...s])) | |
const intersection = (a, b, ...rest) => (rest.length ? intersection : (s => new Set(s)))([...a].reduce((acc, e) => b.has(e) ? [...acc, e] : acc, []), ...rest) | |
const difference = (...sets) => [...intersection(...sets)].reduce((acc, e) => !acc.delete(e) || acc, union(...sets)) | |
const leftDifference = (left, ...rights) => difference(left, intersection(left, union(...rights))) | |
const rightDifference = (...sets) => leftDifference(...sets.reverse()) |
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 Auto darkmode | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Toggle darkmode on supported sites based on your OS's darkmode setting | |
// @author You | |
// @match https://www.tradingview.com/chart/* | |
// @match https://www.coinex.com/* | |
// @exclude https://www.coinex.com/assets/trading_chart/* | |
// @grant none |
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 | |
# rqrcp is a wrapper around 'qrcp receive' which improves desktop integration | |
# by adding support for copying file paths or contents to the clipboard, | |
# opening files in the default application, sending notifications, and using a | |
# GUI window to display the QR code. | |
# | |
# Copyright (C) 2021 Maddison Hellstrom <https://github.com/b0o> | |
# | |
# This program is free software: you can redistribute it and/or modify |
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
# Assorted zsh zle widgets that I've made over the years | |
# (c) 2017-2021 Maddison Hellstrom (github.com/b0o) | |
# License: GPL v3.0 or later | |
## smartie-hands | |
function _smart_l() { | |
local cmd="${1:-l}" | |
local p="" | |
if [[ -n "$BUFFER" ]]; then | |
zmodload -e zsh/pcre || zmodload zsh/pcre |