Skip to content
View apfelchips's full-sized avatar
🍥
🍥

Block or report apfelchips

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. macOS-context-menu-actions macOS-context-menu-actions Public

    Custom Actions for Langui.net's Context Menu Actions macOS finder extension

    Shell 17 3

  2. set file-associations on macOS: ~/.c... set file-associations on macOS: ~/.config/duti/defaults.duti
    1
    # duti settings file
    2
    # src: https://gist.github.com/apfelchips/0073cb3e8d186115f590d318998c1025
    3
    
                  
    4
    # mkdir -p "${XDG_CONFIG_HOME:-$HOME/.config}/duti/" && curl -L "https://git.io/JRtzH" -o "${XDG_CONFIG_HOME:-$HOME/.config}/duti/default.duti"
    5
    # duti-apply wrapper: alias duti-apply='duti -v "${XDG_CONFIG_HOME:-$HOME/.config}/duti"'
  3. Make Windows behave more like macOS,... Make Windows behave more like macOS, for best results remap modifier keys with registry / sharpkeys. AHK script has to run as Administrator to work on System Windows / Apps running as Administrator
    1
    #Requires AutoHotkey v2.0
    2
    #SingleInstance force
    3
    ;#Persistent https://www.autohotkey.com/docs/commands/_Persistent.htm
    4
    ;#InstallKeybdHook ; see: https://www.autohotkey.com/docs/v1/lib/_HotkeyModifierTimeout.htm
    5
    ;#NoTrayIcon
  4. sublime-text sublime-text Public

    Python

  5. BASH helpers / backports / shims BASH helpers / backports / shims
    1
    #!/usr/bin/env bash
    2
    set -euo pipefail
    3
    
                  
    4
    IFS=$'\n\t'
    5
    SCRIPT_DIR=$(realpath -- $(dirname -- $0))