meta: Add eww module

This commit is contained in:
Donovan Glover 2023-08-07 20:44:15 -04:00
parent 25539d81eb
commit 5739a3eaba
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65
3 changed files with 25 additions and 0 deletions

8
assets/eww/eww.scss Normal file
View File

@ -0,0 +1,8 @@
.overlay {
background: transparent;
color: #f8f8f2;
font-weight: bold;
text-shadow: 0 0 0.075em #272822;
font-size: 32px;
opacity: 0.1;
}

8
assets/eww/eww.yuck Normal file
View File

@ -0,0 +1,8 @@
(defpoll time :interval "1s"
"date '+%H:%M'")
(defwindow overlay
:monitor 0
:geometry (geometry :y "4px" :x "8px" :anchor "bottom right")
:stacking "fg"
time)

9
home/eww.nix Normal file
View File

@ -0,0 +1,9 @@
{ pkgs, ... }:
{
programs.eww = {
enable = true;
package = pkgs.eww-wayland;
configDir = ../assets/eww;
};
}