Update all dotfiles
@ -0,0 +1,8 @@
|
||||
Select Logout Command depending on your setup:
|
||||
|
||||
Use for Display Manager e.g., sddm (DEFAULT)
|
||||
sleep 1; hyprctl dispatch exit
|
||||
|
||||
Use for Arch Linux text based login
|
||||
sleep 1; loginctl terminate-user $USER
|
||||
|
After Width: | Height: | Size: 4.6 KiB |
After Width: | Height: | Size: 2.9 KiB |
After Width: | Height: | Size: 3.6 KiB |
After Width: | Height: | Size: 3.9 KiB |
After Width: | Height: | Size: 4.0 KiB |
After Width: | Height: | Size: 4.4 KiB |
@ -0,0 +1,30 @@
|
||||
{
|
||||
"label" : "lock",
|
||||
"action" : "~/.config/hypr/scripts/power.sh lock",
|
||||
"text" : "Lock",
|
||||
"keybind" : "l"
|
||||
}
|
||||
{
|
||||
"label" : "logout",
|
||||
"action" : "~/.config/hypr/scripts/power.sh exit",
|
||||
"text" : "Log Out",
|
||||
"keybind" : "e"
|
||||
}
|
||||
{
|
||||
"label" : "suspend",
|
||||
"action" : "~/.config/hypr/scripts/power.sh suspend",
|
||||
"text" : "Suspend",
|
||||
"keybind" : "u"
|
||||
}
|
||||
{
|
||||
"label" : "reboot",
|
||||
"action" : "~/.config/hypr/scripts/power.sh reboot",
|
||||
"text" : "Restart",
|
||||
"keybind" : "r"
|
||||
}
|
||||
{
|
||||
"label" : "shutdown",
|
||||
"action" : "~/.config/hypr/scripts/power.sh shutdown",
|
||||
"text" : "Power Off",
|
||||
"keybind" : "s"
|
||||
}
|
After Width: | Height: | Size: 132 KiB |
@ -0,0 +1,107 @@
|
||||
/*
|
||||
_ _
|
||||
__ _| | ___ __ _ ___ _ _| |_
|
||||
\ \ /\ / / |/ _ \ / _` |/ _ \| | | | __|
|
||||
\ V V /| | (_) | (_| | (_) | |_| | |_
|
||||
\_/\_/ |_|\___/ \__, |\___/ \__,_|\__|
|
||||
|___/
|
||||
|
||||
by Stephan Raabe (2023)
|
||||
-----------------------------------------------------
|
||||
*/
|
||||
|
||||
/* -----------------------------------------------------
|
||||
* Import Pywal colors
|
||||
* ----------------------------------------------------- */
|
||||
@import '../../.cache/wal/colors-wlogout.css';
|
||||
|
||||
/* -----------------------------------------------------
|
||||
* General
|
||||
* ----------------------------------------------------- */
|
||||
|
||||
* {
|
||||
font-family: "Fira Sans Semibold", FontAwesome, Roboto, Helvetica, Arial, sans-serif;
|
||||
background-image: none;
|
||||
transition: 20ms;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
window {
|
||||
background: url("../ml4w/cache/blurred_wallpaper.png");
|
||||
background-size: cover;
|
||||
font-size: 16pt;
|
||||
color: #cdd6f4;
|
||||
}
|
||||
|
||||
button {
|
||||
background-repeat: no-repeat;
|
||||
background-position: center;
|
||||
background-size: 20%;
|
||||
background-color: rgba(200, 220, 255, 0);
|
||||
animation: gradient_f 20s ease-in infinite;
|
||||
border-radius: 80px; /* Increased border radius for a more rounded look */
|
||||
border:0px;
|
||||
transition: all 0.3s cubic-bezier(.55, 0.0, .28, 1.682), box-shadow 0.2s ease-in-out, background-color 0.2s ease-in-out;
|
||||
}
|
||||
|
||||
button:focus {
|
||||
background-size: 22%;
|
||||
border: 0px;
|
||||
}
|
||||
|
||||
button:hover {
|
||||
background-color: @color11;
|
||||
opacity: 0.8;
|
||||
color: #cdd6f4;
|
||||
background-size: 30%;
|
||||
margin: 30px;
|
||||
border-radius: 80px;
|
||||
box-shadow: 0 0 50px @color7;
|
||||
}
|
||||
|
||||
/* Adjust the size of the icon or content inside the button */
|
||||
button span {
|
||||
font-size: 1.2em; /* Increase the font size */
|
||||
}
|
||||
|
||||
/*
|
||||
-----------------------------------------------------
|
||||
Buttons
|
||||
-----------------------------------------------------
|
||||
*/
|
||||
|
||||
#lock {
|
||||
margin: 10px;
|
||||
border-radius: 20px;
|
||||
background-image: image(url("icons/lock.png"));
|
||||
}
|
||||
|
||||
#logout {
|
||||
margin: 10px;
|
||||
border-radius: 20px;
|
||||
background-image: image(url("icons/logout.png"));
|
||||
}
|
||||
|
||||
#suspend {
|
||||
margin: 10px;
|
||||
border-radius: 20px;
|
||||
background-image: image(url("icons/suspend.png"));
|
||||
}
|
||||
|
||||
#hibernate {
|
||||
margin: 10px;
|
||||
border-radius: 20px;
|
||||
background-image: image(url("icons/hibernate.png"));
|
||||
}
|
||||
|
||||
#shutdown {
|
||||
margin: 10px;
|
||||
border-radius: 20px;
|
||||
background-image: image(url("icons/shutdown.png"));
|
||||
}
|
||||
|
||||
#reboot {
|
||||
margin: 10px;
|
||||
border-radius: 20px;
|
||||
background-image: image(url("icons/reboot.png"));
|
||||
}
|