eww: enable
All checks were successful
ci/woodpecker/cron/flake-lock-update Pipeline was successful

This commit is contained in:
notohh 2024-05-13 16:18:49 -04:00
parent 54055d0f9e
commit f5034dca81
Signed by: notohh
GPG key ID: BD47506D475EE86D
8 changed files with 35 additions and 26 deletions

View file

@ -16,7 +16,7 @@
.time {
font-size: 16px;
margin: 0.5rem 1.2rem 0.5rem 1rem;
margin: 0.5rem 1rem 0.5rem 1rem;
padding-left: 0.4rem;
padding-right: 0.4rem;
border-radius: 8px;

View file

@ -33,7 +33,7 @@
(defwindow bar
:monitor 2
:monitor 1
:windowtype "dock"
:geometry (geometry
:x "0%"

View file

@ -1,6 +1,14 @@
@import "./mixins.scss";
@import "./colors.scss";
.menu-widget {
font-size: 20px;
margin: 0.5rem 1.2rem 0.5rem 1.5rem;
padding-right: 0.3rem;
border-radius: 8px;
background-color: $background;
}
.menubox {
border: 3px solid $background-highlight;
border-radius: 10px;
@ -32,14 +40,6 @@
}
}
.menu-widget {
font-size: 20px;
margin: 0.5rem 1.2rem 0.5rem 0.9rem;
padding-right: 0.3rem;
border-radius: 8px;
background-color: $background;
}
.cpu {
@include sysinfo();
color: $red;

View file

@ -56,19 +56,27 @@
border: 3px solid $background-highlight;
}
.hover-play:hover {
.hover-play {
transition: all 200ms ease;
border-radius: 5px;
&:hover {
background-color: $green;
transition: all 100ms ease-in;
transition: all 200ms ease;
color: $background-highlight;
border-radius: 5px;
}
}
.hover-pause:hover {
.hover-pause {
transition: all 200ms ease;
border-radius: 5px;
&:hover {
background-color: $red;
transition: all 200ms ease-in;
transition: all 200ms ease;
color: $background-highlight;
border-radius: 5px;
}
}
.close-button {
margin: 0.5rem 2rem 0rem 30rem;

View file

@ -1,6 +1,6 @@
(deflisten musicArtist :initial "-" "playerctl --follow metadata --format '{{ artist }}'")
(deflisten musicTitle :initial "-" "playerctl --follow metadata --format '{{title}}'")
(deflisten musicCover "sh ~/.config/eww/scripts/get-music-cover.sh ~/.config/eww/cache_directory")
(deflisten musicCover "sh /home/notoh/snowflake/home/programs/eww/config/scripts/get-music-cover.sh /tmp/eww/cache_directory")
(defpoll time :interval "60s"

View file

@ -56,7 +56,7 @@
)
(defwindow menu-window
:monitor 2
:monitor 1
:windowtype "dock"
:geometry (geometry
:x "0.9%"

View file

@ -39,7 +39,7 @@
(bar-art)))
(defwindow music-widget
:monitor 2
:monitor 1
:windowtype "dock"
:namespace "music-widget"
:geometry (geometry

View file

@ -6,7 +6,8 @@
];
programs.eww = {
enable = false;
package = pkgs.eww-wayland;
enable = true;
package = pkgs.eww;
configDir = ./config;
};
}