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
default partial alphanumeric_keys | |
xkb_symbols "basic" { | |
include "us(basic)" | |
include "level3(ralt_switch)" | |
// Layer Shifting (Taking A (AC01) as an example) | |
// No Modifier = ᚨ | |
// Shift + A = ᚩ | |
// RAlt + A = ᚬ |
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
if [[ -d "$HOME"/.floorp ]]; then | |
index=0 | |
PSNAME="$browser" | |
while read -r profileItem; do | |
if [[ $(echo "$profileItem" | cut -c1) = "/" ]]; then | |
# path is not relative | |
DIRArr[$index]="$profileItem" | |
else | |
# we need to append the default path to give a | |
# fully qualified path |
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
#!/bin/bash | |
# This script helps with getting Frappe/ERPNext running quickly using | |
# the upstream Compose specifications. Not intended for production. | |
# | |
# Usage: | |
# | |
# $ git clone https://github.com/frappe/frappe_docker | |
# $ cd frappe_docker | |
# $ curl -Lo erpnext.sh <URL to this raw gist> | |
# |
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
#!/bin/bash # | |
# This script does exactly 3 things for 1 good reason: | |
# | |
# What this does: | |
# | |
# 1. Detects either curl or wget and wraps them in helpers | |
# 2. Exports the helpers for the real installer | |
# 3. Downloads and runs the real installer | |
# | |
# Why |
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 | |
WORK_DIR=$(pwd) | |
cd "$HOME" || exit | |
echo "Downloading patchelf binary from ArchLinux repos" | |
mkdir -p patchelf-temp | |
#curl -L https://github.com/Jebaitedneko/docker/raw/ubuntu/patchelf | |
curl -L https://archlinux.org/packages/extra/x86_64/patchelf/download | bsdtar -C patchelf-temp -xf - | |
mv "$HOME"/patchelf-temp/usr/bin/patchelf "$HOME"/ | |
rm -rf "$HOME"/patchelf-temp |