Compare commits
No commits in common. "b11e66214ac54b71b5360437ecb86805296cc0e0" and "fc18072aa59f1a393a658d307d1bff542b75323b" have entirely different histories.
b11e66214a
...
fc18072aa5
8 changed files with 16 additions and 28 deletions
|
@ -1,6 +1,5 @@
|
||||||
what is currently not working:
|
what is currently not working:
|
||||||
- plymouth theme has no login prompt
|
- gdm thinks i tried to login when pressing on the user
|
||||||
- sddm theme flashes white
|
|
||||||
|
|
||||||
what i want to do:
|
what i want to do:
|
||||||
- learn flakes
|
- learn flakes
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
/*font-family: Iosevka Nerd Font;*/
|
/*font-family: Iosevka Nerd Font;*/
|
||||||
font-size: 70px;
|
font-size: 70px;
|
||||||
border-radius: 30px;
|
border-radius: 30px;
|
||||||
border: 2px solid $contrastbg;
|
border: 5px solid $contrastbg;
|
||||||
button {
|
button {
|
||||||
border-radius: 12px;
|
border-radius: 12px;
|
||||||
min-width: 80px;
|
min-width: 80px;
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
WINDOW="$1"
|
WINDOW="$1"
|
||||||
(
|
(
|
||||||
eww update "$WINDOW"-visible=false
|
eww update $WINDOW-visible=false
|
||||||
sleep .55
|
sleep .55
|
||||||
eww close "$WINDOW"-reveal
|
eww close $WINDOW-reveal
|
||||||
) &
|
) &
|
||||||
|
|
4
config/eww/scripts/exec
Executable file
4
config/eww/scripts/exec
Executable file
|
@ -0,0 +1,4 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
cd ~
|
||||||
|
${@} 2>&1 >/dev/null &
|
|
@ -1,14 +0,0 @@
|
||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
FILE="$HOME/.config/.heart"
|
|
||||||
if [[ ! -f "$FILE" ]]; then
|
|
||||||
echo > "$FILE"
|
|
||||||
fi
|
|
||||||
|
|
||||||
if grep -q "$FILE"; then
|
|
||||||
eww update heart-ts=false
|
|
||||||
echo > "$FILE"
|
|
||||||
else
|
|
||||||
eww update heart-ts=true
|
|
||||||
echo >> "$FILE"
|
|
||||||
fi
|
|
|
@ -2,5 +2,5 @@
|
||||||
|
|
||||||
WINDOW="$1"
|
WINDOW="$1"
|
||||||
|
|
||||||
eww open "$WINDOW"-reveal
|
eww open $WINDOW-reveal
|
||||||
eww update "$WINDOW"-visible=true
|
eww update $WINDOW-visible=true
|
||||||
|
|
|
@ -21,12 +21,15 @@
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
(defvar heart-ts true)
|
||||||
|
(defvar heart-icon "")
|
||||||
(defwidget heart-toggle []
|
(defwidget heart-toggle []
|
||||||
(eventbox :class {heart_icon == "" ? "toggle-on" : "toggle-off"}
|
(eventbox :class {heart-ts ? "toggle-on" : "toggle-off"}
|
||||||
:onclick "$EWW_PATH/heart.sh toggle"
|
:onclick {heart-ts ? "eww update heart-icon= ; eww update heart-ts=false" :
|
||||||
|
"eww update heart-icon= ; eww update heart-ts=true"}
|
||||||
(box :class "heart-toggle"
|
(box :class "heart-toggle"
|
||||||
:orientation "h"
|
:orientation "h"
|
||||||
(label :text " ${heart_icon} ")
|
(label :text " ${heart-icon} ")
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
@ -54,9 +57,6 @@
|
||||||
(left-bar)
|
(left-bar)
|
||||||
)
|
)
|
||||||
|
|
||||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
||||||
|
|
||||||
;
|
|
||||||
|
|
||||||
|
|
||||||
(defvar notif-panel-state false)
|
(defvar notif-panel-state false)
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
(deflisten notif_icon "$EWW_PATH/notif.sh icon")
|
(deflisten notif_icon "$EWW_PATH/notif.sh icon")
|
||||||
(deflisten heart_icon "tail -f $HOME/.config/.heart")
|
|
||||||
|
|
||||||
(defpoll volume_icon :interval "1s" "$EWW_PATH/volume.sh icon")
|
(defpoll volume_icon :interval "1s" "$EWW_PATH/volume.sh icon")
|
||||||
(defpoll volume :interval "1s" "$EWW_PATH/volume.sh percentage")
|
(defpoll volume :interval "1s" "$EWW_PATH/volume.sh percentage")
|
||||||
|
|
Loading…
Reference in a new issue