small pixel drawing of a pufferfish dotfiles

Merge remote-tracking branch 'origin/master'
j3s j3s@c3f.net
Mon, 14 Jun 2021 10:50:29 -0500
commit

d9d50538aae1798fa02aa5ff6a984399ffa8fdfe

parent

888b4099a0783548162cf197eab3af5964325a05

6 files changed, 10 insertions(+), 5 deletions(-)

jump to
M .config/rss-feeds.txt.config/rss-feeds.txt

@@ -18,3 +18,4 @@ https://georgerrmartin.com/notablog/feed

https://www.ryanprior.com/posts/index.xml https://kattraxler.github.io/feed.xml https://linuxwit.ch/feed.xml +https://coderanger.net/atom.xml
M .config/sway/config.config/sway/config

@@ -32,8 +32,9 @@ # output HDMI-A-1 resolution 1920x1080 position 1920,0

# # You can get the names of your outputs by running: swaymsg -t get_outputs output DP-1 disable -output DP-2 position 0,235 resolution 2560x1440@170hz -output HDMI-A-2 position 2560,0 resolution 1920x1080@74hz transform 90 +output DP-2 position 1920,215 resolution 2560x1440@170hz +output HDMI-A-1 position 0,395 resolution 1920x1080@74hz +output HDMI-A-2 position 4480,0 resolution 1920x1080@74hz transform 90 ### Idle configuration #
M .profile.profile

@@ -1,4 +1,4 @@

-export PATH=~/bin/$(hostname):~/bin/$(uname -m):~/bin:$PATH +export PATH=~/bin/$(hostname):~/bin/$(uname -m):~/bin:~/go/bin:$PATH export ENV=~/.env export EDITOR=vim export LANG=en_US.UTF-8
M bin/prompt.gobin/prompt.go

@@ -37,5 +37,5 @@ }

} } - fmt.Printf(" %s", branchname) + fmt.Printf(" (%s)", branchname) }
M bin/xdg-openbin/xdg-open

@@ -1,8 +1,11 @@

#!/bin/sh case "${1%%:*}" in - http|https|*.pdf) + http|https) exec firefox "$1" ;; + *.pdf) + exec zathura "$1" + ;; mailto) exec aerc "$1" ;;