added kanshi

This commit is contained in:
ManOfGoldForever 2026-08-30 00:20:01 -04:00
parent 5f620bceb5
commit d7a9fd25bd
12 changed files with 69 additions and 32 deletions

View file

@ -1,3 +1,4 @@
exec_always kanshi
exec_always autotiling
exec_always ~/.config/sway/wob.sh
exec swayidle -w \

View file

@ -1,20 +1,4 @@
# Wallpaper - solid color
output * bg #141514 solid_color
# Monitors:
output HDMI-A-1 res 1920x1080@239.76Hz pos 0,0 transform 0
output DP-1 res 2560x1440@59.95Hz pos 1920,0 transform 270
output eDP-1 disable
output eDP-2 disable
# Workspace assignments:
# 1-2 → HDMI-A-1 (primary)
# 3-5 → DP-1 (secondary)
# 6-12 → follows focused output
workspace 1 output HDMI-A-1
workspace 2 output HDMI-A-1
workspace 3 output DP-1
workspace 4 output DP-1
workspace 5 output DP-1
workspace 1

View file

@ -1,8 +1,7 @@
#!/bin/bash
while true; do
games=$(df /mnt/games --output=pcent 2>/dev/null | tail -1 | tr -d ' ')
root=$(df / --output=pcent 2>/dev/null | tail -1 | tr -d ' ')
datetime=$(date +'%m/%d/%Y %I:%M %p')
echo "$games $root $datetime"
echo "$root $datetime"
sleep 30
done