🗑️ remove(wleave): using rofi powermenu instead

This commit is contained in:
Sergio Laín 2024-05-26 20:10:16 +02:00
parent 736a5d6740
commit f645732160
No known key found for this signature in database
GPG key ID: FB00AF7015FFE76B
14 changed files with 0 additions and 155 deletions

View file

@ -120,7 +120,6 @@
- floorp-bin
# WM
- wleave-git
- swayosd-git
- swww
- satty

View file

@ -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

View file

@ -1,3 +0,0 @@
<div align="center">
<a href=""><img src="./title.png"></a>
</div>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 21 KiB

View file

@ -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

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.1 KiB

View file

@ -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"
}

View file

@ -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")
);
}

1
.github/README.md vendored
View file

@ -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/) |
</details>