€šm̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰̰�Ř§Ů Â£╟©舐æØ¢£ðsÞ¥¿— memchr
⛏️
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/bash | |
set -e | |
source $HOME/.local/lib/bash/blib.sh | |
load color message | |
colorize | |
msg_style=1 | |
DATA_DIR="${XDG_DATA_HOME:-$HOME/.local/share}/git-id" | |
IDENTITY_DATABASE="${DATA_DIR}/identities.json" |
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 | |
set -e | |
[[ -n $HYPRLAND_DEBUG_CONF ]] && exit 0 | |
USAGE="\ | |
Import environment variables | |
Usgae: $0 <command> | |
Commands: |
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 python | |
import getopt | |
import shutil | |
import array | |
import sys | |
import os | |
import typing | |
from pathlib import Path | |
import subprocess |
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/python3 | |
import yaml | |
import sys | |
from pathlib import Path | |
HIDE_OPTIONS = ['x-gvfs-hide'] | |
def generate_fstab(yaml_file: Path): | |
with yaml_file.open('r') as file: | |
config = yaml.safe_load(file) |
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
#include <crypto/hash.h> | |
#include <linux/crc32c.h> | |
#include <linux/kernel.h> | |
#include <linux/ktime.h> | |
#include <linux/module.h> | |
#include <linux/proc_fs.h> | |
#include <linux/random.h> | |
#include <linux/slab.h> | |
#include <linux/types.h> | |
#include <linux/vmalloc.h> |