Merge remote-tracking branch 'refs/remotes/origin/main'

This commit is contained in:
Penelope Gwen 2026-01-26 15:26:07 -08:00
commit 3da43ba05d
16 changed files with 36 additions and 39 deletions

View file

@ -4,9 +4,9 @@
:revealvar reveal_powermenu :revealvar reveal_powermenu
:class "powermenu ${reveal_powermenu}" :class "powermenu ${reveal_powermenu}"
:revealvar-name "reveal_powermenu" :revealvar-name "reveal_powermenu"
(button :onclick 'scripts/bar/powermenu poweroff system-shutdown-symbolic "systemctl poweroff"' (button :onclick 'sdu power shutdown'
:class "revealer-preview" :class "revealer-preview"
:tooltip "Poweroff" :tooltip "Shutdown"
"") "")
(powermenu_children))) (powermenu_children)))
@ -15,15 +15,15 @@
:orientation "h" :orientation "h"
:space-evenly false :space-evenly false
:halign "center" :halign "center"
(button :onclick 'scripts/bar/powermenu reboot system-reboot-symbolic "systemctl reboot"' (button :onclick 'sdu suspend reboot'
:tooltip "Reboot" :tooltip "Reboot"
"") "")
(button :onclick 'scripts/bar/powermenu suspend weather-clear-night-symbolic "systemctl suspend"' (button :onclick 'sdu power suspend'
:tooltip "Suspend" :tooltip "Suspend"
"󰤄") "󰤄")
(button :onclick 'scripts/bar/powermenu lock system-lock-screen-symbolic "sp-lock"' (button :onclick 'sdu power lock'
:tooltip "Lock" :tooltip "Lock"
"") "")
(button :onclick 'scripts/bar/powermenu logout system-log-out-symbolic "swaymsg exit"' (button :onclick 'sdu power logout'
:tooltip "Log Out" :tooltip "Logout"
""))) "")))

View file

@ -1,3 +1,5 @@
(defwidget windowtitle [] (defwidget windowtitle []
(label :class {jq(sway_info,'.window_info.title','r') != "" ? "active_window" : ""} (label :class {jq(sway_info,'.window_info.title','r') != "" ? "active_window" : ""}
:text {jq(sway_info,'.window_info.title','r')})) :limit-width 40
:show-truncated true
:text {jq(sway_info,'.window_info.title','r')}))

View file

@ -26,10 +26,10 @@
(shortcuts_revealer) (shortcuts_revealer)
(weather_revealer) (weather_revealer)
(mcstatus_revealer) (mcstatus_revealer)
(box ; (box
; :visible {(jq(workspacesArray, '.[]\|select(.focused==true).num') <= 20) && (jq(workspacesArray, '.[]\|select(.focused==true).num') >= 11)} ; :visible {(jq(workspacesArray, '.[]\|select(.focused==true).num') <= 20) && (jq(workspacesArray, '.[]\|select(.focused==true).num') >= 11)}
(software_revealer) ; (software_revealer)
) ; )
(box (box
; :visible {jq(workspacesArray, '.[]\|select(.focused==true).num') <= 9} ; :visible {jq(workspacesArray, '.[]\|select(.focused==true).num') <= 9}
(notes_revealer) (notes_revealer)
@ -53,6 +53,6 @@
(include "modules/home/weather.yuck") (include "modules/home/weather.yuck")
(include "modules/home/shortcuts.yuck") (include "modules/home/shortcuts.yuck")
(include "modules/home/notes.yuck") (include "modules/home/notes.yuck")
(include "modules/home/softwareupdates.yuck") ;(include "modules/home/softwareupdates.yuck")
(include "modules/home/reminders.yuck") (include "modules/home/reminders.yuck")
(include "modules/home/mcstatus.yuck") (include "modules/home/mcstatus.yuck")

View file

@ -175,8 +175,8 @@ SetEditor=false
2 screens: Width=490 2 screens: Width=490
2048x1280 screen: Height=1030 2048x1280 screen: Height=1030
2048x1280 screen: Width=1005 2048x1280 screen: Width=1005
3 screens: Height=672 3 screens: Height=744
3 screens: Width=1056 3 screens: Width=1476
[filetree] [filetree]
editShade=183,220,246 editShade=183,220,246

View file

@ -77,23 +77,23 @@ scale = 0.75
[[profiles.scripts]] [[profiles.scripts]]
name = "bridge-netgear-r8000" name = "bridge-netgear-r8000"
icon = "󱂇" icon = "󱂇"
command = "ssh-agent-handler.sh router-netgear-r8000 󱂇" command = "ssh-agent-handler.sh root@router-netgear-r8000 󱂇"
[[profiles.scripts]] [[profiles.scripts]]
name = "bridge-netgear-r8000" name = "bridge-netgear-r8000"
icon = "󰑩" icon = "󰑩"
command = "ssh-agent-handler.sh bridge-netgear-r8000 󰑩" command = "ssh-agent-handler.sh root@bridge-netgear-r8000 󰑩"
[[profiles.scripts]] [[profiles.scripts]]
name = "server-dell-7050sff-debian" name = "server-dell-7050sff-debian"
icon = "󰒍" icon = "󰒍"
command = "ssh-agent-handler.sh server-dell-7050sff-debian 󰒍" command = "ssh-agent-handler.sh pogmom@server-dell-7050sff-debian 󰒍"
[[profiles.scripts]] [[profiles.scripts]]
name = "server-hp-y2z63av" name = "server-hp-y2z63av"
icon = "󰢋" icon = "󰢋"
command = "ssh-agent-handler.sh server-hp-y2z63av 󰢋" command = "ssh-agent-handler.sh pogmom@server-hp-y2z63av 󰢋"
[[profiles.scripts]] #[[profiles.scripts]]
name = "server-asus-n705fd" # name = "server-asus-n705fd"
icon = "󱫋" # icon = "󱫋"
command = "ssh-agent-handler.sh server-asus-n705fd 󱫋" # command = "ssh-agent-handler.sh server-asus-n705fd 󱫋"
[[profiles]] [[profiles]]
name = "School" name = "School"

View file

@ -4,7 +4,7 @@ bindsym {
#terminal #terminal
$mod+Return exec $term $mod+Return exec $term
#floating terminal #floating terminal
$mod+Shift+Return exec $HOME/.config/sway/scripts/exec-float $term $mod+Shift+Return exec timeout 3s $HOME/.config/sway/scripts/exec-float $term
#launcher #launcher
$mod+d exec $menu $mod+d exec $menu
#launcher reload #launcher reload

View file

@ -1,4 +1,5 @@
#!/bin/bash #!/bin/bash
echo "you should wrap me in a timeout command!!!!"
eval "$1 &" eval "$1 &"
pid=$! pid=$!
echo $pid echo $pid

View file

@ -1 +0,0 @@
b4407a8e-37e5-4326-a23b-e89cf057e14c

View file

@ -1 +0,0 @@
b18eeea2-4019-48cf-bf8a-a7652d8ab6bd

View file

@ -1 +0,0 @@
ac4089f5-a17e-409b-883b-8dac65cd7bdc

View file

@ -1 +0,0 @@
404c3cca-be9d-4312-8b51-9fe8642bb0a7

View file

@ -1 +0,0 @@
b02a4033-b5dd-46fe-a82b-88309635ef3e

View file

@ -1 +0,0 @@
8e1cdd0f-bf80-492b-b6ec-bf015b11cc98

View file

@ -1 +0,0 @@
c610d6f9-e135-4a00-be58-e2c3714fb4f3

View file

@ -11,7 +11,7 @@ Locked=1
Name=Development Name=Development
IsRelative=1 IsRelative=1
Path=development Path=development
StoreID=2ccf13ae StoreID=30267575
ShowSelector=1 ShowSelector=1
[Profile0] [Profile0]
@ -19,13 +19,18 @@ Name=Penelope
IsRelative=1 IsRelative=1
Path=penelope Path=penelope
Default=1 Default=1
StoreID=a61d59be StoreID=0585997e
ShowSelector=0 ShowSelector=0
[General] [General]
StartWithLastProfile=1 StartWithLastProfile=1
Version=2 Version=2
[Profile4]
Name=testing
IsRelative=1
Path=4z689ygf.testing
[Install6C4726F70D182CF7] [Install6C4726F70D182CF7]
Default=penelope Default=penelope
Locked=1 Locked=1
@ -35,8 +40,3 @@ Name=School
IsRelative=1 IsRelative=1
Path=school Path=school
[Profile4]
Name=testing
IsRelative=1
Path=4z689ygf.testing

View file

@ -32,3 +32,4 @@ ala() {
printf '[-] opening [%s] in alacritty...\n' "${ALACRITTY_OPEN_DIR}" printf '[-] opening [%s] in alacritty...\n' "${ALACRITTY_OPEN_DIR}"
swaymsg exec "alacritty --working-directory """${ALACRITTY_OPEN_DIR}"""" swaymsg exec "alacritty --working-directory """${ALACRITTY_OPEN_DIR}""""
} }