Compare commits

...

2 commits

Author SHA1 Message Date
eba535af3c
[MINOR] Fixed domain name in .ssh/config 2023-02-19 23:25:44 +00:00
0f6dddb4b7
[MAJOR] Added eww 2023-02-14 12:22:01 +00:00
4 changed files with 50 additions and 1 deletions

BIN
.config/eww/background Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1 MiB

25
.config/eww/eww.scss Normal file
View file

@ -0,0 +1,25 @@
* {
all: unset;
}
window {
border-radius: 5%;
}
.btns-box {
padding: 10px;
background-color: #282a36;
font-family: FiraCode Nerd Font Mono;
font-size: 100px;
}
.button{
border-radius: 5%;
outline-style: solid;
outline-color: #44475a;
outline-width: 2px;
}
.button:hover{
background-color: #44475a;
}

24
.config/eww/eww.yuck Normal file
View file

@ -0,0 +1,24 @@
(defwindow powermenu
:stacking "fg"
:windowtype "dialog"
:wm-ignore true
:monitor 0
:geometry (geometry :anchor "center" :width "50%" :height "25%")
(powermenu_layout))
(defwidget powermenu_layout []
(_buttons :sleep "systemctl suspend"
:sleep_icon "⏾"
:poweroff "poweroff"
:poweroff_icon "⏻"
:reboot "reboot"
:reboot_icon ""
:logout "loginctl kill-session self"
:logout_icon "󰗽"))
(defwidget _buttons [sleep sleep_icon poweroff poweroff_icon reboot reboot_icon logout logout_icon]
(box :class "btns-box"
(button :class "button" :onclick sleep sleep_icon)
(button :class "button" :onclick poweroff poweroff_icon)
(button :class "button" :onclick reboot reboot_icon)
(button :class "button" :onclick logout logout_icon)))

View file

@ -1,7 +1,7 @@
IdentityFile ~/.ssh/id_ecdsa_sk IdentityFile ~/.ssh/id_ecdsa_sk
IdentityFile ~/.ssh/id_ecdsa_sk_backup IdentityFile ~/.ssh/id_ecdsa_sk_backup
Host gitea.olympuslab.net github.com Host git.olympuslab.net github.com
ControlMaster auto ControlMaster auto
ControlPath ~/.ssh/session.%r@%h:%p ControlPath ~/.ssh/session.%r@%h:%p
ControlPersist 1d ControlPersist 1d