small pixel drawing of a pufferfish dotfiles

berkeleymono!
Jes Olson j3s@c3f.net
Fri, 29 Dec 2023 10:07:06 -0600
commit

954ec5e583f9049eff9cdaffc14662ba85cd432a

parent

18c978bdb729c2206e487cf03821e1fcb9f3031e

5 files changed, 50 insertions(+), 9 deletions(-)

jump to
M .config/foot/foot.ini.config/foot/foot.ini

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

-font = monospace:size=12 +font = BerkeleyMono-Regular:monospace:size=12 [scrollback] lines = 50000
M .config/sway/config.config/sway/config

@@ -167,6 +167,7 @@

# When the status_command prints a new line to stdout, swaybar updates. # The default just shows the current date and time. status_command statusbar + font Berkeley Mono Regular 11 pango_markup enabled colors {
A .jira.d/config.yml

@@ -0,0 +1,38 @@

+endpoint: https://do-internal.atlassian.net +user: jolson +login: jolson@digitalocean.com +jira-deployment-type: cloud +authentication-method: api-token + +project: machines + +queries: + all: (assignee in membersOf("Machines-Configuration") or "Team[Team]" = 78222cae-690d-4584-975b-9e84aef003f4) AND status != Done + initiatives: (assignee in membersOf("Machines-Configuration") or "Team[Team]" = 78222cae-690d-4584-975b-9e84aef003f4) AND status != Done AND issuetype = Initiative + epics: (assignee in membersOf("Machines-Configuration") or "Team[Team]" = 78222cae-690d-4584-975b-9e84aef003f4) AND status != Done AND issuetype = Epic + issues: (assignee in membersOf("Machines-Configuration") or "Team[Team]" = 78222cae-690d-4584-975b-9e84aef003f4) AND status != Done + +custom-commands: + - name: epics + help: testing epic listy + options: + - name: abc + short: a + default: default + - name: day + type: ENUM + enum: + - Monday + - Tuesday + - Wednesday + - Thursday + - Friday + required: true + args: + - name: ARG + required: true + - name: MORE + repeat: true + script: | + echo COMMAND {{args.ARG}} --abc {{options.abc}} --day {{options.day}} {{range $more := args.MORE}}{{$more}} {{end}} +
M .profile.profile

@@ -22,5 +22,6 @@ export CHEF_USER_NAME=jolson

export KITCHEN_SSH_GATEWAY_USERNAME=jolson export DIGITALOCEAN_ACCESS_TOKEN="$(pa show cloud.digitalocean.com | head -1)" export DIGITALOCEAN_STAGE2_ACCESS_TOKEN="$(pa show stage2.cloud.digitalocean.com | head -1)" + export JIRA_API_TOKEN="$(pa show jira-api-token)" fi ##
M bin/zora/statusbarbin/zora/statusbar

@@ -9,18 +9,19 @@ # wifistrength="$(nmcli dev show wlp0s20f3 | awk '/GENERAL.STATE/ {print $2}')"

# wifi="$wifiname ($wifistrength%)" wifi="$wifiname" fi - vpn="off" + vpn="disconnected" if ip link ls gpd0 | grep -q UP; then - vpn="on" + vpn="connected" fi battery="$(cat /sys/class/power_supply/BAT0/capacity)%" # time=$(date +"%A %Y-%m-%d %I:%M %p") - pst_time=$(TZ=America/Los_Angeles date +"%I:%M PT ") - cst_time=$(TZ=America/Chicago date +"[%I:%M CT] ") - est_time=$(TZ=America/New_York date +"%I:%M ET ") - utc_time=$(date -u +"%H:%M UTC ") - time="$pst_time $cst_time $est_time $utc_time" + ymd="$(date +"%Y-%m-%d")" + pst_time=$(TZ=America/Los_Angeles date +"%I:%MPT") + cst_time=$(TZ=America/Chicago date +"[%I:%MCT]") + est_time=$(TZ=America/New_York date +"%I:%MET") + utc_time=$(date -u +"%H:%MUTC") + time="$pst_time/$cst_time/$est_time/$utc_time" # --date='TZ="America/New_York" - printf "%s | %s | %s\n" "wifi: ${wifi} vpn: $vpn" "bat: ${battery}" "${time}" + printf "wifi=%s vpn=%s bat=%s | %s %s\n" "$wifi" "$vpn" "$battery" "$time" "$ymd" sleep 10 done