35 lines
737 B
Bash
35 lines
737 B
Bash
echo "[
|
|
{
|
|
\"custom/empty\": {
|
|
\"format\": \" \",
|
|
\"interval\": 1
|
|
},
|
|
\"height\": $SCREEN_HEIGHT,
|
|
\"layer\": \"bottom\",
|
|
\"margin-bottom\": 0,
|
|
\"margin-top\": 0,
|
|
\"mode\": \"overlay\",
|
|
\"modules-center\": [
|
|
\"custom/empty\"
|
|
],
|
|
\"modules-left\": [],
|
|
\"modules-right\": [],
|
|
\"name\": \"whiteCornersTop\",
|
|
\"position\": \"top\",
|
|
\"width\": $SCREEN_WIDTH
|
|
}
|
|
]
|
|
" > $WAYBAR_CONFIG
|
|
|
|
echo "window#waybar.whiteCornersTop {
|
|
border: 2px solid #$ACCENT;
|
|
background-color: transparent;
|
|
box-shadow: 0px 0px 0px 60px black, 0px 0px 0px 0.5px #ebdbb2;
|
|
border-radius: $((($BORDER_RADIUS+($BORDER_WIDTH))))px;
|
|
margin: 20px;
|
|
}
|
|
" > $WAYBAR_STYLE
|
|
|
|
killall waybar
|
|
waybar
|