mirror of
https://github.com/elkowar/dots-of-war.git
synced 2025-04-05 14:23:31 +00:00
asdf
This commit is contained in:
parent
27aeedb0c8
commit
33a4f18ac1
9 changed files with 71 additions and 42 deletions
|
@ -1,10 +1,4 @@
|
|||
{
|
||||
"optOut": false,
|
||||
"lastUpdateCheck": 1603028923250,
|
||||
"update": {
|
||||
"latest": "6.14.8",
|
||||
"current": "6.14.6",
|
||||
"type": "patch",
|
||||
"name": "npm"
|
||||
}
|
||||
"lastUpdateCheck": 1603626767242
|
||||
}
|
|
@ -17,10 +17,17 @@ entry {
|
|||
border-radius: 50px;
|
||||
|
||||
scale trough {
|
||||
padding: 10px;
|
||||
border-radius: 50px;
|
||||
background-color: #ebdbb2;
|
||||
|
||||
slider {
|
||||
background: red;
|
||||
}
|
||||
|
||||
highlight {
|
||||
min-width: 30px;
|
||||
padding: 10px;
|
||||
min-height: 30px;
|
||||
border-bottom-left-radius: 50px;
|
||||
border-bottom-right-radius: 50px;
|
||||
background-color: #8ec07c;
|
||||
|
@ -49,16 +56,22 @@ entry {
|
|||
|
||||
.buttons {
|
||||
min-height: 50px;
|
||||
}
|
||||
|
||||
button, button * {
|
||||
border: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.buttons {
|
||||
background: #1d2021;
|
||||
//box-shadow: 0 0 10px -5px rgba(0,0,0, 0.5);
|
||||
box-shadow: 0 0 10px -5px rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
scale trough {
|
||||
padding: 10px;
|
||||
border-radius: 50px;
|
||||
background-color: #ebdbb2;
|
||||
|
||||
highlight {
|
||||
padding: 10px;
|
||||
min-height: 30px;
|
||||
border-bottom-left-radius: 50px;
|
||||
border-bottom-right-radius: 50px;
|
||||
background-color: #8ec07c;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<def name="test">
|
||||
<box space-evenly="false" spacing="10">
|
||||
testing {{shit}}
|
||||
<scale value="50" />
|
||||
<scale value="50" orientation="v" min="0" max="100" flipped="true"/>
|
||||
|
||||
<button onclick="notify-send 'ree' 'this is {{shit}}'">click me</button>
|
||||
<calendar show-heading="false" show-day-names="false" day="2" onclick="notify-send 'asdf' '{}'" />
|
||||
|
@ -20,6 +20,10 @@
|
|||
<box>{{text}}</box>
|
||||
<box>{{text}}</box>
|
||||
<box>{{text}}</box>
|
||||
|
||||
<label text="reeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee" limit-width="5" wrap="true"/>
|
||||
<input onchange="notify-send 'ree' '{}'"/>
|
||||
{{date}}
|
||||
</box>
|
||||
</def>
|
||||
|
||||
|
@ -31,22 +35,21 @@
|
|||
|
||||
<def name="music">
|
||||
<box orientation="h" valign="start" space-evenly="false" hexpand="true">
|
||||
<image path="{{song-image}}" width="150" height="150" />
|
||||
<image visible="{{song-image-visible}}" path="{{song-image}}" width="150" height="150" />
|
||||
<box orientation="v" halign="fill" space-evenly="false" vexpand="true" hexpand="true">
|
||||
<box class="data" vexpand="true">
|
||||
<box orientation="v" halign="start">
|
||||
<label class="songname" halign="start" limit-width="30" text="{{song-name}}" />
|
||||
<box space-evenly="false" halign="start">
|
||||
<label class="key" text="Album: "/>
|
||||
<label class="key" text="Album: " />
|
||||
<label halign="start" limit-width="30" text="{{song-album}}" />
|
||||
</box>
|
||||
<box space-evenly="false" halign="start">
|
||||
<label class="key" text="By: "/>
|
||||
<label class="key" text="By: " />
|
||||
<label halign="start" limit-width="30" text="{{song-artist}}" />
|
||||
</box>
|
||||
</box>
|
||||
</box>
|
||||
<scale visible="{{song-show-progress}}" min="0" max="1" value="{{song-position}}" />
|
||||
<box class="buttons" hexpand="true">
|
||||
<button onclick="playerctl previous"></button>
|
||||
<button onclick="playerctl play-pause">{{song-playpause}}</button>
|
||||
|
@ -60,25 +63,33 @@
|
|||
|
||||
|
||||
<variables>
|
||||
<script-var name="volume">
|
||||
amixer sget 'Master' | grep 'Front Left:' | sed 's/.*\[\(.*\)%\].*/\1/g';
|
||||
LANG=C pactl subscribe | grep --line-buffered sink | while read -r _; do
|
||||
amixer sget 'Master' | grep 'Front Left:' | sed 's/.*\[\(.*\)%\].*/\1/g'
|
||||
done
|
||||
</script-var>
|
||||
<!--<script-var name="volume">-->
|
||||
<!--amixer sget 'Master' | grep 'Front Left:' | sed 's/.*\[\(.*\)%\].*/\1/g';-->
|
||||
<!--LANG=C pactl subscribe | grep REEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE-line-buffered sink | while read -r _; do-->
|
||||
<!--amixer sget 'Master' | grep 'Front Left:' | sed 's/.*\[\(.*\)%\].*/\1/g'-->
|
||||
<!--done-->
|
||||
<!--</script-var>-->
|
||||
|
||||
<var name="shit">
|
||||
shit
|
||||
</var>
|
||||
|
||||
<var name="song-image"></var>
|
||||
<var name="song-image-visible">true</var>
|
||||
<var name="song-name"></var>
|
||||
<var name="song-album"></var>
|
||||
<var name="song-artist"></var>
|
||||
<var name="song-show-progress">false</var>
|
||||
<var name="song-playpause"></var>
|
||||
<!--<script-var name="song-position" interval="5s">-->
|
||||
<!--playerctl position-->
|
||||
<script-var name="date" interval="1s">
|
||||
date
|
||||
</script-var>
|
||||
<!--<script-var name="xyz">-->
|
||||
<!--tail -F /home/leon/test | while read -r _; do notify-send "Hi"; done-->
|
||||
<!--</script-var>-->
|
||||
|
||||
<!--<script-var name="foo">-->
|
||||
<!--tail -F /home/leon/test-->
|
||||
<!--</script-var>-->
|
||||
</variables>
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/bash
|
||||
#!/usr/bin/env bash
|
||||
|
||||
|
||||
|
||||
|
@ -10,6 +10,12 @@ getData() {
|
|||
eww update song-name "$(playerctl metadata --format "{{ xesam:title }}")"
|
||||
wget -O /tmp/music-file "$(playerctl metadata --format "{{ mpris:artUrl }}"| fixArtUrl)"
|
||||
eww update song-image /tmp/music-file
|
||||
if [ -f /tmp/music-file ]; then
|
||||
eww update song-image-visible true
|
||||
else
|
||||
eww update song-image-visible false
|
||||
fi
|
||||
|
||||
eww update song-album "$(playerctl metadata --format "{{ xesam:album }}")"
|
||||
eww update song-artist "$(playerctl metadata --format "{{ xesam:artist }}")"
|
||||
if [ "spotify" = "$(playerctl metadata | head -n1 | awk '{ print $1 }')" ]; then
|
||||
|
@ -28,5 +34,5 @@ getData() {
|
|||
|
||||
}
|
||||
|
||||
#getData
|
||||
cat <(playerctl metadata --format '{{ title }}' -F & playerctl status -F) | while read -r _; do getData; done;
|
||||
getData
|
||||
cat <(playerctl metadata --format '{{ title }}' -F & playerctl status -F) 2>&1 /dev/null
|
||||
|
|
|
@ -5,8 +5,8 @@ window_name="$2"
|
|||
|
||||
|
||||
|
||||
kill -9 "$(cat /tmp/eww-popup.pid)" || \
|
||||
eww -d open "$window_name"
|
||||
#kill -9 "$(cat /tmp/eww-popup.pid)" || \
|
||||
#eww -d open "$window_name"
|
||||
|
||||
{ sleep "$secs"; eww close "$window_name"; } &
|
||||
echo $! > /tmp/eww-popup.pid
|
||||
#{ sleep "$secs"; eww close "$window_name"; } &
|
||||
#echo $! > /tmp/eww-popup.pid
|
||||
|
|
|
@ -36,6 +36,7 @@ shadow-opacity = 0.5;
|
|||
# shadow-blue = 0.0;
|
||||
|
||||
shadow-exclude = [
|
||||
"name = 'GLava'",
|
||||
"! name~=''",
|
||||
#"!focused && ! class_g ?='xfce4-notifyd'",
|
||||
#"name *= 'polybar'",
|
||||
|
@ -86,6 +87,7 @@ blur-size = 14;
|
|||
# Do not let blur radius adjust based on window opacity.
|
||||
blur-background-fixed = true;
|
||||
blur-background-exclude = [
|
||||
"name = 'GLava'",
|
||||
"window_type = 'dock'",
|
||||
"window_type = 'desktop'",
|
||||
|
||||
|
|
|
@ -159,7 +159,7 @@ aqua = "#8ec07c"
|
|||
-- Layout ---------------------------------------- {{{
|
||||
myTabTheme :: Theme
|
||||
myTabTheme = def -- defaultThemeWithButtons
|
||||
{ activeColor = "#202020" --activeColor = "#1d2021"
|
||||
{ activeColor = "#1d2021" --activeColor = "#1d2021"
|
||||
, inactiveColor = "#1d2021" --inactiveColor = "#282828"
|
||||
, activeBorderColor = "#1d2021"
|
||||
, inactiveBorderColor = "#282828"
|
||||
|
@ -588,6 +588,11 @@ fullscreenFixEventHook (ClientMessageEvent _ _ _ dpy win typ (_:dats)) = do
|
|||
withWindowAttributes dpy win $ \attrs ->
|
||||
liftIO $ resizeWindow dpy win (fromIntegral $ wa_width attrs + 1) (fromIntegral $ wa_height attrs)
|
||||
return $ All True
|
||||
--fullscreenFixEventHook (ClientMessageEvent { ev_event_type, ev_window }) = do
|
||||
--if ev_event_type == propertyNotify then
|
||||
--spawn $ "notify-send 'hi'" ++ show ev_window
|
||||
--else return ()
|
||||
--return $ All True
|
||||
fullscreenFixEventHook _ = return $ All True
|
||||
|
||||
|
||||
|
|
|
@ -374,9 +374,6 @@ toolbarseparator {
|
|||
fill: #ebdbb2 !important;
|
||||
}
|
||||
|
||||
.urlbarView-row[selected="true"] {
|
||||
color: red;
|
||||
}
|
||||
|
||||
/* }}} */
|
||||
|
||||
|
|
|
@ -79,6 +79,7 @@ in
|
|||
cargo-expand
|
||||
gdbgui
|
||||
lldb
|
||||
zola
|
||||
]
|
||||
)
|
||||
(
|
||||
|
|
Loading…
Add table
Reference in a new issue