diff --git a/.config/ansible/roles/arch/packages/tasks/modules/base.yml b/.config/ansible/roles/arch/packages/tasks/modules/base.yml index c22322ca..1582d4c3 100644 --- a/.config/ansible/roles/arch/packages/tasks/modules/base.yml +++ b/.config/ansible/roles/arch/packages/tasks/modules/base.yml @@ -120,7 +120,6 @@ - floorp-bin # WM - - wleave-git - swayosd-git - swww - satty diff --git a/.config/pacman/aur-packages.txt b/.config/pacman/aur-packages.txt index c7a47e02..92cca09f 100644 --- a/.config/pacman/aur-packages.txt +++ b/.config/pacman/aur-packages.txt @@ -60,7 +60,6 @@ vesktop-bin 1.5.2-2 vkbasalt 0.3.2.10-1 vscodium-bin 1.89.1.24130-1 vscodium-bin-marketplace 1.76.0-1 -wleave-git 0.3.0.r1.ga3d2fbb-1 xdg-ninja 0.2.0.2-1 xemu-bin 0.7.118-1 yay 12.3.5-1 diff --git a/.config/wleave/.github/README.md b/.config/wleave/.github/README.md deleted file mode 100644 index affa9d51..00000000 --- a/.config/wleave/.github/README.md +++ /dev/null @@ -1,3 +0,0 @@ -
diff --git a/.config/wleave/.github/title.png b/.config/wleave/.github/title.png deleted file mode 100644 index b5ada95a..00000000 Binary files a/.config/wleave/.github/title.png and /dev/null differ diff --git a/.config/wleave/actions b/.config/wleave/actions deleted file mode 100755 index 1a3f1fcd..00000000 --- a/.config/wleave/actions +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/bin/env bash - -if [[ "$?" == 0 ]]; then - sleep 0.25s - if [[ "$1" == 'shutdown' ]]; then - systemctl poweroff - elif [[ "$1" == 'reboot' ]]; then - systemctl reboot - elif [[ "$1" == 'hibernate' ]]; then - playerctl --all-players stop - pkill wleave - sleep 0.5s - systemctl suspend-then-hibernate - elif [[ "$1" == 'lock' ]]; then - pkill wleave - sleep 0.5s - hyprlock - elif [[ "$1" == 'suspend' ]]; then - playerctl --all-players stop - pkill wleave - sleep 0.5s - systemctl suspend - elif [[ "$1" == 'logout' ]]; then - hyprctl dispatch exit none - fi -else - exit -fi diff --git a/.config/wleave/icons/hibernate.png b/.config/wleave/icons/hibernate.png deleted file mode 100644 index ddaeae01..00000000 Binary files a/.config/wleave/icons/hibernate.png and /dev/null differ diff --git a/.config/wleave/icons/lock.png b/.config/wleave/icons/lock.png deleted file mode 100644 index 163afc90..00000000 Binary files a/.config/wleave/icons/lock.png and /dev/null differ diff --git a/.config/wleave/icons/logout.png b/.config/wleave/icons/logout.png deleted file mode 100644 index 99238e09..00000000 Binary files a/.config/wleave/icons/logout.png and /dev/null differ diff --git a/.config/wleave/icons/reboot.png b/.config/wleave/icons/reboot.png deleted file mode 100644 index 971cc192..00000000 Binary files a/.config/wleave/icons/reboot.png and /dev/null differ diff --git a/.config/wleave/icons/shutdown.png b/.config/wleave/icons/shutdown.png deleted file mode 100644 index 1097caab..00000000 Binary files a/.config/wleave/icons/shutdown.png and /dev/null differ diff --git a/.config/wleave/icons/suspend.png b/.config/wleave/icons/suspend.png deleted file mode 100644 index 21a82fd5..00000000 Binary files a/.config/wleave/icons/suspend.png and /dev/null differ diff --git a/.config/wleave/layout b/.config/wleave/layout deleted file mode 100755 index 9efee0ec..00000000 --- a/.config/wleave/layout +++ /dev/null @@ -1,36 +0,0 @@ -{ - "label": "lock", - "text": "", - "action": "~/.config/wleave/actions lock", - "keybind": "l" -} -{ - "label": "hibernate", - "text": "", - "action": "~/.config/wleave/actions hibernate", - "keybind": "h" -} -{ - "label": "suspend", - "text": "", - "action": "~/.config/wleave/actions suspend", - "keybind": "u" -} -{ - "label": "reboot", - "text": "", - "action": "~/.config/wleave/actions reboot", - "keybind": "r" -} -{ - "label": "logout", - "text": "", - "action": "~/.config/wleave/actions logout", - "keybind": "e" -} -{ - "label": "shutdown", - "text": "", - "action": "~/.config/wleave/actions shutdown", - "keybind": "s" -} diff --git a/.config/wleave/style.css b/.config/wleave/style.css deleted file mode 100644 index 5302ce8c..00000000 --- a/.config/wleave/style.css +++ /dev/null @@ -1,85 +0,0 @@ -/** ********** Fonts ********** **/ -* { - font-family: "JetBrainsMono Nerd Font"; - font-size: 15px; - font-weight: bold; -} - -/** ********** Main Window ********** **/ -window { - background-color: transparent; -} - -/** ********** Buttons ********** **/ -button { - background-color: #24273a; - color: #cdd6f4; - outline-style: none; - border: 2px solid rgba(183, 189, 248, 0.5); - box-shadow: 3px 3px 1px 1px #101010; - background-clip: padding-box; - background-repeat: no-repeat; - background-position: center; - background-size: 20%; - border-radius: 15px; - box-shadow: none; - text-shadow: none; - animation: gradient_f 20s ease-in infinite; - transition: all 0.2s ease-in-out; -} - -button:focus { - background-size: 30%; -} - -button:hover { - color: #ffffff; - background-size: 40%; - background-color: #363a4f; - outline-style: none; - animation: gradient_f 20s ease-in infinite; - transition: all 0.3s cubic-bezier(0.55, 0, 0.28, 1.682); -} - -/** ********** Icons ********** **/ -#lock { - background-image: image( - url("icons/lock.png"), - url("/usr/share/wleave/icons/lock.png") - ); -} - -#logout { - background-image: image( - url("icons/logout.png"), - url("/usr/share/wleave/icons/logout.png") - ); -} - -#suspend { - background-image: image( - url("icons/suspend.png"), - url("/usr/share/wleave/icons/suspend.png") - ); -} - -#hibernate { - background-image: image( - url("icons/hibernate.png"), - url("/usr/share/wleave/icons/hibernate.png") - ); -} - -#shutdown { - background-image: image( - url("icons/shutdown.png"), - url("/usr/share/wleave/icons/shutdown.png") - ); -} - -#reboot { - background-image: image( - url("icons/reboot.png"), - url("/usr/share/wleave/icons/reboot.png") - ); -} diff --git a/.github/README.md b/.github/README.md index 20c519b9..e4a601f7 100644 --- a/.github/README.md +++ b/.github/README.md @@ -120,7 +120,6 @@ Here is all the information about my setup: | **Color Picker** | [hyprpicker](https://github.com/hyprwm/hyprpicker) | | **Screenshot Tool** | [hyprshot](https://github.com/Gustash/Hyprshot) (Using [grim](https://sr.ht/~emersion/grim/) and [slurp](https://github.com/emersion/slurp)) | | **Image Annotation** | [satty](https://github.com/gabm/Satty) [:gear:](../.config/satty/) | -| **Logout Menu** | [wleave](https://github.com/AMNatty/wleave) [:gear:](../.config/wleave/) |