my dotz
0

Configure Feed

Select the types of activity you want to include in your feed.

1export PATH=~/bin/$(hostname):~/bin:~/go/bin:$PATH 2export ENV=~/.rc 3export EDITOR=nvim 4export LANG=en_US.UTF-8 5export GDK_BACKEND=wayland 6 7## https://wiki.archlinux.org/title/Firefox#Applications_on_Wayland_can_not_launch_Firefox 8export MOZ_DBUS_REMOTE=1 9export XDG_CURRENT_DESKTOP=sway 10## 11 12# this apparently makes java windows not suck 13# for reasons beyond my mortal comprehension 14# used for: 15# - arduino ide 16export _JAVA_AWT_WM_NONREPARENTING=1 17 18## DO stufffff 19if [ "$(uname)" = "Darwin" ]; then 20 PATH=/opt/homebrew/bin:$PATH 21 export CHEF_USER_NAME=jolson 22 export KITCHEN_SSH_GATEWAY_USERNAME=jolson 23 export DIGITALOCEAN_ACCESS_TOKEN="$(pa show cloud.digitalocean.com | head -1)" 24 export DIGITALOCEAN_STAGE2_ACCESS_TOKEN="$(pa show stage2.cloud.digitalocean.com | head -1)" 25 export JIRA_USERNAME="jolson@digitalocean.com" 26 export JIRA_API_TOKEN="$(pa show jira-api-token | head -1)" 27fi 28if [ "$(hostname)" = "zora" ]; then 29 alias jj='jj --config-toml "$(cat $HOME/.config/jj/work.toml)"' 30 export CHEF_USER_NAME=jolson 31 export KITCHEN_SSH_GATEWAY_USERNAME=jolson 32 export DIGITALOCEAN_ACCESS_TOKEN="$(pa show cloud.digitalocean.com | head -1)" 33 export DIGITALOCEAN_STAGE2_ACCESS_TOKEN="$(pa show stage2.cloud.digitalocean.com | head -1)" 34 export JIRA_USERNAME="jolson@digitalocean.com" 35 export JIRA_API_TOKEN="$(pa show jira-api-token | head -1)" 36fi 37##