chore: wlogout config and package removed

This commit is contained in:
hesam-init 2024-02-22 23:41:38 +03:30
parent 29796fd418
commit 581c9e7863
11 changed files with 0 additions and 91 deletions

View file

@ -78,7 +78,6 @@ The following packages are required for the proper functioning of Hyprland on Vo
- swayidle
- swappy
- rofi
- wlogout
- font-awesome-6
- fontmanager
- gnome-system-monitor

View file

@ -20,4 +20,3 @@ $rofi_powermenu = $scr_path/rofi-launch.sh p
$rofi_screenshot = $scr_path/rofi-launch.sh s
$rofi_clipboard = $scr_path/rofi-launch.sh c
$rofi_wallpaper = $scr_path/rofi-launch.sh w
$powermenu = $scr_path/wlogout-toggle.sh

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.4 KiB

View file

@ -1,30 +0,0 @@
{
"label": "lock",
"action": "sleep 1; swaylock",
"keybind": "l"
}
{
"label": "hibernate",
"action": "sleep 1; systemctl hibernate",
"keybind": "h"
}
{
"label": "logout",
"action": "sleep 1; hyprctl dispatch exit",
"keybind": "e"
}
{
"label": "shutdown",
"action": "sleep 1; vshutdown",
"keybind": "s"
}
{
"label": "suspend",
"action": "sleep 1; systemctl suspend",
"keybind": "u"
}
{
"label": "reboot",
"action": "sleep 1; vreboot",
"keybind": "r"
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 132 KiB

View file

@ -1,59 +0,0 @@
@import "../../.config/hypr-theme/global.css";
* {
font-family: "Fira Sans Semibold", FontAwesome, Roboto, Helvetica, Arial, sans-serif;
background-image: none;
transition: 20ms;
}
window {
background-color: rgba(12, 12, 12, 0.1);
}
button {
margin: 8px;
border-radius: 20px;
color: #FFFFFF;
background-repeat: no-repeat;
background-position: center;
background-size: 20%;
background-color: @backgrounddark;
transition: all 0.3s cubic-bezier(.55, 0.0, .28, 1.682);
}
button:focus,
button:active,
button:hover {
background-size: 25%;
background-color: rgba(255, 255, 255, 0.5);
}
/*
-----------------------------------------------------
Buttons
-----------------------------------------------------
*/
#lock {
background-image: image(url("icons/lock.png"));
}
#logout {
background-image: image(url("icons/logout.png"));
}
#suspend {
background-image: image(url("icons/suspend.png"));
}
#hibernate {
background-image: image(url("icons/hibernate.png"));
}
#shutdown {
background-image: image(url("icons/shutdown.png"));
}
#reboot {
background-image: image(url("icons/reboot.png"));
}