diff options
Diffstat (limited to 'dotfiles/.config')
-rw-r--r-- | dotfiles/.config/waybar/modules.json | 17 | ||||
-rw-r--r-- | dotfiles/.config/waybar/style.css | 2 |
2 files changed, 15 insertions, 4 deletions
diff --git a/dotfiles/.config/waybar/modules.json b/dotfiles/.config/waybar/modules.json index ed3dff1..0d3cb9f 100644 --- a/dotfiles/.config/waybar/modules.json +++ b/dotfiles/.config/waybar/modules.json @@ -18,11 +18,22 @@ "spacing": 10 }, "clock": { - "format": "{:%Y年%m月%d日 %H:%M:%S}", + "locale": "ja_JP.UTF-8", + "format": "{:L%Y年%m月%d日(%a)%H:%M:%S}", + "format-alt": "{:%H:%M:%S}", "tooltip-format": "{calendar}", "calendar": { - "mode": "year", - "mode-mon-col": 3 + "mode" : "month", + "on-scroll" : 1, + "format": { + "months": "<span size='13pt'><b>{}</b></span>", + "weekdays": "<span size='14pt'>{}</span>", + "today": "<span color=\"#b73030\"><b>{}</b></span>" + } + }, + "actions": { + "on-scroll-up": "shift_up", + "on-scroll-down": "shift_down" }, "interval": 1 }, diff --git a/dotfiles/.config/waybar/style.css b/dotfiles/.config/waybar/style.css index b870199..7f8c7ba 100644 --- a/dotfiles/.config/waybar/style.css +++ b/dotfiles/.config/waybar/style.css @@ -66,5 +66,5 @@ window#waybar { background: linear-gradient(60deg, #5b8277, #99d0b5); } #workspaces button:hover { - border: 1px solid #5b8277; + border-color: #5b8277; } |