init: copy from Hacmini

This commit is contained in:
wyj
2024-09-14 10:42:47 -04:00
commit 1df22c6512
384 changed files with 18925 additions and 0 deletions
+8
View File
@@ -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
Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

+36
View File
@@ -0,0 +1,36 @@
{
"label" : "lock",
"action" : "$HOME/dotfiles/hypr/scripts/power.sh lock",
"text" : "Lock",
"keybind" : "l"
}
{
"label" : "hibernate",
"action" : "$HOME/dotfiles/hypr/scripts/power.sh hibernate",
"text" : "Hibernate",
"keybind" : "h"
}
{
"label" : "logout",
"action" : "$HOME/dotfiles/hypr/scripts/power.sh exit",
"text" : "Exit",
"keybind" : "e"
}
{
"label" : "shutdown",
"action" : "$HOME/dotfiles/hypr/scripts/power.sh shutdown",
"text" : "Shutdown",
"keybind" : "s"
}
{
"label" : "suspend",
"action" : "$HOME/dotfiles/hypr/scripts/power.sh suspend",
"text" : "Suspend",
"keybind" : "u"
}
{
"label" : "reboot",
"action" : "$HOME/dotfiles/hypr/scripts/power.sh reboot",
"text" : "Reboot",
"keybind" : "r"
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 132 KiB

+97
View File
@@ -0,0 +1,97 @@
/*
_ _
__ _| | ___ __ _ ___ _ _| |_
\ \ /\ / / |/ _ \ / _` |/ _ \| | | | __|
\ 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("../../.cache/blurred_wallpaper.png");
background-size: cover;
}
button {
color: #FFFFFF;
font-size:20px;
background-repeat: no-repeat;
background-position: center;
background-size: 25%;
border-style: solid;
background-color: rgba(12, 12, 12, 0.3);
border: 3px solid #FFFFFF;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
button:focus,
button:active,
button:hover {
color: @color11;
background-color: rgba(12, 12, 12, 0.5);
border: 3px solid @color11;
}
/*
-----------------------------------------------------
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"));
}