Compare commits

...

4 commits

Author SHA1 Message Date
Cat /dev/Nulo cd42f11600 watch-dconf: restaurar gnome zeit
This reverts commit d991318870.
2023-02-17 13:40:32 -03:00
Cat /dev/Nulo 42f06a9feb waybar: hacer nm-applet más grande 2023-02-16 19:25:55 -03:00
Cat /dev/Nulo 349e6db176 waybar: subir font-weight 2023-02-16 16:56:23 -03:00
Cat /dev/Nulo 5f33a5ef5f waybar: mostrar dia 2023-02-16 16:56:15 -03:00
3 changed files with 20 additions and 4 deletions

View file

@ -51,11 +51,11 @@
}
},
"tray": {
// "icon-size": 21,
"icon-size": 24,
"spacing": 10
},
"clock": {
"format": "{:%a %b %H:%M}",
"format": "{:%a %b %d %H:%M}",
"tooltip-format": "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>",
"format-alt": "{:%Y-%m-%d}"
},

View file

@ -1,6 +1,7 @@
* {
/* `otf-font-awesome` is required to be installed for icons */
font-family: Inter, FontAwesome;
font-weight: 500;
font-size: 16px;
}

View file

@ -2,6 +2,7 @@
. ~/.profile
dconf_color_path=/org/gnome/desktop/interface/color-scheme
dconf_message_path=/org/gnome/shell/extensions/simple-message/message
switch_helix() {
sed -i 's/theme = ".*"/theme = "'$1'"/' ~/.config/helix/config.toml
@ -28,9 +29,23 @@ switch_from_dconf() {
switch_from_dconf "$(dconf read "$dconf_color_path")"
dconf watch "$dconf_color_path" | while read -r line; do
(dconf watch "$dconf_color_path" | while read -r line; do
theme="$(echo "$line" | grep -E "'.*'" | sed "s/'//g")"
test -z "$theme" && continue
switch_from_dconf "$theme"
done
done) &
update_zeit() {
dconf write "$dconf_message_path" "'$(zeit tracking --no-colors)'"
echo updated zeit
}
update_zeit
(busybox inotifyd - "$ZEIT_DB":c | while read -r; do
update_zeit
done) &
while true; do
sleep 30
update_zeit
done