my dotz
2
fork

Configure Feed

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

berkeleymono!

+50 -9
+1 -1
.config/foot/foot.ini
··· 1 - font = monospace:size=12 1 + font = BerkeleyMono-Regular:monospace:size=12 2 2 3 3 [scrollback] 4 4 lines = 50000
+1
.config/sway/config
··· 167 167 # When the status_command prints a new line to stdout, swaybar updates. 168 168 # The default just shows the current date and time. 169 169 status_command statusbar 170 + font Berkeley Mono Regular 11 170 171 pango_markup enabled 171 172 172 173 colors {
+38
.jira.d/config.yml
··· 1 + endpoint: https://do-internal.atlassian.net 2 + user: jolson 3 + login: jolson@digitalocean.com 4 + jira-deployment-type: cloud 5 + authentication-method: api-token 6 + 7 + project: machines 8 + 9 + queries: 10 + all: (assignee in membersOf("Machines-Configuration") or "Team[Team]" = 78222cae-690d-4584-975b-9e84aef003f4) AND status != Done 11 + initiatives: (assignee in membersOf("Machines-Configuration") or "Team[Team]" = 78222cae-690d-4584-975b-9e84aef003f4) AND status != Done AND issuetype = Initiative 12 + epics: (assignee in membersOf("Machines-Configuration") or "Team[Team]" = 78222cae-690d-4584-975b-9e84aef003f4) AND status != Done AND issuetype = Epic 13 + issues: (assignee in membersOf("Machines-Configuration") or "Team[Team]" = 78222cae-690d-4584-975b-9e84aef003f4) AND status != Done 14 + 15 + custom-commands: 16 + - name: epics 17 + help: testing epic listy 18 + options: 19 + - name: abc 20 + short: a 21 + default: default 22 + - name: day 23 + type: ENUM 24 + enum: 25 + - Monday 26 + - Tuesday 27 + - Wednesday 28 + - Thursday 29 + - Friday 30 + required: true 31 + args: 32 + - name: ARG 33 + required: true 34 + - name: MORE 35 + repeat: true 36 + script: | 37 + echo COMMAND {{args.ARG}} --abc {{options.abc}} --day {{options.day}} {{range $more := args.MORE}}{{$more}} {{end}} 38 +
+1
.profile
··· 22 22 export KITCHEN_SSH_GATEWAY_USERNAME=jolson 23 23 export DIGITALOCEAN_ACCESS_TOKEN="$(pa show cloud.digitalocean.com | head -1)" 24 24 export DIGITALOCEAN_STAGE2_ACCESS_TOKEN="$(pa show stage2.cloud.digitalocean.com | head -1)" 25 + export JIRA_API_TOKEN="$(pa show jira-api-token)" 25 26 fi 26 27 ##
+9 -8
bin/zora/statusbar
··· 9 9 # wifi="$wifiname ($wifistrength%)" 10 10 wifi="$wifiname" 11 11 fi 12 - vpn="off" 12 + vpn="disconnected" 13 13 if ip link ls gpd0 | grep -q UP; then 14 - vpn="on" 14 + vpn="connected" 15 15 fi 16 16 battery="$(cat /sys/class/power_supply/BAT0/capacity)%" 17 17 # time=$(date +"%A %Y-%m-%d %I:%M %p") 18 - pst_time=$(TZ=America/Los_Angeles date +"%I:%M PT ") 19 - cst_time=$(TZ=America/Chicago date +"[%I:%M CT] ") 20 - est_time=$(TZ=America/New_York date +"%I:%M ET ") 21 - utc_time=$(date -u +"%H:%M UTC ") 22 - time="$pst_time $cst_time $est_time $utc_time" 18 + ymd="$(date +"%Y-%m-%d")" 19 + pst_time=$(TZ=America/Los_Angeles date +"%I:%MPT") 20 + cst_time=$(TZ=America/Chicago date +"[%I:%MCT]") 21 + est_time=$(TZ=America/New_York date +"%I:%MET") 22 + utc_time=$(date -u +"%H:%MUTC") 23 + time="$pst_time/$cst_time/$est_time/$utc_time" 23 24 # --date='TZ="America/New_York" 24 - printf "%s | %s | %s\n" "wifi: ${wifi} vpn: $vpn" "bat: ${battery}" "${time}" 25 + printf "wifi=%s vpn=%s bat=%s | %s %s\n" "$wifi" "$vpn" "$battery" "$time" "$ymd" 25 26 sleep 10 26 27 done