my dotz
2
fork

Configure Feed

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

Merge remote-tracking branch 'origin/master'

j3s d9d50538 888b4099

+10 -5
+1
.config/rss-feeds.txt
··· 18 18 https://www.ryanprior.com/posts/index.xml 19 19 https://kattraxler.github.io/feed.xml 20 20 https://linuxwit.ch/feed.xml 21 + https://coderanger.net/atom.xml
+3 -2
.config/sway/config
··· 32 32 # 33 33 # You can get the names of your outputs by running: swaymsg -t get_outputs 34 34 output DP-1 disable 35 - output DP-2 position 0,235 resolution 2560x1440@170hz 36 - output HDMI-A-2 position 2560,0 resolution 1920x1080@74hz transform 90 35 + output DP-2 position 1920,215 resolution 2560x1440@170hz 36 + output HDMI-A-1 position 0,395 resolution 1920x1080@74hz 37 + output HDMI-A-2 position 4480,0 resolution 1920x1080@74hz transform 90 37 38 38 39 ### Idle configuration 39 40 #
+1 -1
.profile
··· 1 - export PATH=~/bin/$(hostname):~/bin/$(uname -m):~/bin:$PATH 1 + export PATH=~/bin/$(hostname):~/bin/$(uname -m):~/bin:~/go/bin:$PATH 2 2 export ENV=~/.env 3 3 export EDITOR=vim 4 4 export LANG=en_US.UTF-8
+1 -1
bin/prompt.go
··· 37 37 } 38 38 } 39 39 40 - fmt.Printf(" %s", branchname) 40 + fmt.Printf(" (%s)", branchname) 41 41 }
bin/x86_64/prompt

This is a binary file and will not be displayed.

+4 -1
bin/xdg-open
··· 1 1 #!/bin/sh 2 2 case "${1%%:*}" in 3 - http|https|*.pdf) 3 + http|https) 4 4 exec firefox "$1" 5 5 ;; 6 + *.pdf) 7 + exec zathura "$1" 8 + ;; 6 9 mailto) 7 10 exec aerc "$1" 8 11 ;;