diff --git a/themes/base/.config/sway/launch.sh b/themes/base/.config/sway/launch.sh index 9269713..f8e4a99 100755 --- a/themes/base/.config/sway/launch.sh +++ b/themes/base/.config/sway/launch.sh @@ -2,5 +2,6 @@ export WLR_NO_HARDWARE_CURSORS=1 export GBM_BACKEND=nvidia-drm export __GLX_VENDOR_LIBRARY_NAME=nvidia -export WLR_RENDERER=vulkan +export WLR_RENDERER=gles2 +export WLR_DRM_DEVICES=/dev/dri/card1:/dev/dri/card2 exec sway --unsupported-gpu diff --git a/themes/hacker/.config/sway/monitors b/themes/hacker/.config/sway/monitors index 07310a5..0213a24 100644 --- a/themes/hacker/.config/sway/monitors +++ b/themes/hacker/.config/sway/monitors @@ -4,6 +4,7 @@ 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: diff --git a/themes/hacker/.config/sway/status.sh b/themes/hacker/.config/sway/status.sh index ffaa4e4..b3a5eb1 100755 --- a/themes/hacker/.config/sway/status.sh +++ b/themes/hacker/.config/sway/status.sh @@ -1,7 +1,8 @@ #!/bin/bash while true; do - disk=$(df / --output=pcent 2>/dev/null | tail -1 | tr -d ' ') + 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 "$disk $datetime" + echo "$games $root $datetime" sleep 30 done