my dotz
2
fork

Configure Feed

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

DO onboarding commit

j3s b06fc925 a15e00c9

+34 -8
+2
.config/chromium-flags.conf
··· 1 + --enable-features=UseOzonePlatform 2 + --ozone-platform=wayland
+9
.config/kanshi/config
··· 1 + profile { 2 + output eDP-1 enable 3 + } 4 + 5 + profile { 6 + output eDP-1 disable 7 + output DP-2 mode 1920x1080 position 0,0 8 + output HDMI-A-1 mode 1920x1080 position 1920,0 9 + }
+5
.config/sway/config
··· 68 68 xkb_options ctrl:nocaps 69 69 } 70 70 71 + input "1149:4128:Kensington_Expert_Mouse" { 72 + scroll_method on_button_down 73 + scroll_button 275 74 + } 75 + 71 76 ### Key bindings 72 77 # 73 78 # Basics:
+12
.config/sway/zora
··· 1 1 output * bg /home/j3s/Pictures/whale.jpg fill 2 + 3 + # This will lock your screen after 300 seconds of inactivity, then turn off 4 + # your displays after another 300 seconds, and turn your screens back on when 5 + # resumed. It will also lock your screen before your computer goes to sleep. 6 + 7 + exec swayidle -w \ 8 + timeout 300 'swaylock -f -c 000000' \ 9 + timeout 600 'swaymsg "output * dpms off"' resume 'swaymsg "output * dpms on"' \ 10 + before-sleep 'swaylock -f -c 000000' 11 + 12 + for_window [class="Firefox"] inhibit_idle fullscreen 13 + for_window [class="Chromium"] inhibit_idle fullscreen
+2
.profile
··· 3 3 export EDITOR=nvim 4 4 export LANG=en_US.UTF-8 5 5 export GDK_BACKEND=wayland 6 + export XDG_CURRENT_DESKTOP=sway 7 + export CHEF_USER_NAME=jolson
-6
.ssh/config
··· 1 - Include ~/.ssh/config.d/* 2 - 3 - Host gibson 4 - User j3s 5 - Hostname gibson.cyberia.club 6 - Port 3215
+1 -1
bin/prompt.go
··· 16 16 cwd = "~" + cwd[len(home):] 17 17 } 18 18 now := time.Now().Format("15:04:05") 19 - fmt.Printf("[%s] %s ", now, host) 19 + fmt.Printf("[%s] 🍣%s ", now, host) 20 20 21 21 parts = strings.Split(cwd, "/") 22 22 for i, part := range parts {
bin/x86_64/prompt

This is a binary file and will not be displayed.

+3 -1
bin/zora/statusbar
··· 5 5 battery="🐟 $(cat /sys/class/power_supply/BAT0/capacity)%" 6 6 wifi="🐡 $(nmcli ge status | grep -v STATE | awk '{print $1}')" 7 7 time=$(date +"%A %Y-%m-%d %I:%M %p") 8 - time="🦈 $time $(date -u +"(%H:%M UTC)")" 8 + est_time=$(TZ=America/New_York date +"(%I:%M ET)") 9 + time="🦈 $time $est_time $(date -u +"(%H:%M UTC)")" 10 + # --date='TZ="America/New_York" 9 11 printf "%s | %s | %s\n" "${wifi}" "${battery}" "${time}" 10 12 sleep 10 11 13 done