dotfiles/xonsh/rita.xsh
2024-11-07 16:25:41 -07:00

55 lines
1.2 KiB
Text

#
# Dotfile specifics for Rita
#
# Path
# Note: lower in the list = higher priority
PATH_ADDS = [
"/usr/local/bin",
"/home/deprekated/.bin",
"/home/deprekated/.local/bin",
"/Users/deprekated/.cargo/bin",
"/usr/local/sbin",
"/usr/local/bin",
"/usr/local/opt/llvm/bin",
"/usr/local/opt/e2fsprogs/sbin",
"/usr/local/opt/grep/libexec/gnubin",
"/home/deprekated/.gem/ruby/2.6.0/bin",
#"/opt/ecp5-toolchain-linux_x86_64-v1.6.3/bin"
]
# Aliases
aliases['ls'] = 'eza -gb'
aliases['tree'] = 'eza --tree'
aliases['gfcycle'] = 'uhubctl -l 3-1.3 -p 4 -a cycle'
#aliases['sshot'] = 'grim -g @($(slurp).strip())'
aliases['open'] = 'xdg-open'
# Python
$PYTHONPATH=""
$PYTHONPATH.extend([
$HOME + "/Projects/greatfet/libgreat/host",
$HOME + "/Projects/greatfet/host"
])
# Wayland fanciness
$GDK_BACKEND="wayland"
$CLUTTER_BACKEND="wayland"
# Environment
$DEVKITPRO="/opt/devkitpro"
$DEVKITARM="/opt/devkitpro/devkitARM"
# Smartcard auth
$GPG_TTY=$(tty).strip()
gpg-connect-agent updatestartuptty /bye 2>&1 >/dev/null
$SSH_AUTH_SOCK=$(gpgconf --list-dirs agent-ssh-socket).strip()
# Such convenience.
$RHODODENDRON_M0_BIN="/home/deprekated/Projects/greatfet/firmware/build/greatfet_usb/rhododendron_m0.bin"