Skip to content
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions config/waybar/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
min-height: 0;
font-family: 'JetBrainsMono Nerd Font';
font-size: 12px;
text-shadow: none;
Comment thread
pipetogrep marked this conversation as resolved.
}

.modules-left {
Expand Down Expand Up @@ -57,6 +58,11 @@

tooltip {
padding: 2px;
text-shadow: none;
}

tooltip * {
text-shadow: none;
}

#custom-update {
Expand Down
20 changes: 20 additions & 0 deletions migrations/1779713467.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
echo "Disable inherited text shadows in Waybar"

waybar_style="$HOME/.config/waybar/style.css"
marker="omarchy:disable-text-shadow"

if [[ -f $waybar_style ]] && ! grep -qF "$marker" "$waybar_style"; then
Comment on lines +3 to +6
cat >>"$waybar_style" <<'EOF'

/* omarchy:disable-text-shadow */
* {
text-shadow: none;
}

tooltip, tooltip * {
text-shadow: none;
}
EOF

omarchy-restart-waybar
fi
Comment thread
pipetogrep marked this conversation as resolved.