Compare commits

..

2 Commits

Author SHA1 Message Date
coolneng db1fd548cb
Remove unused modules from Waybar 2022-04-13 11:00:59 +02:00
coolneng 0b2c759a89
Add pomodoro status to Waybar 2022-04-13 11:00:19 +02:00
3 changed files with 20 additions and 26 deletions

View File

@ -0,0 +1,12 @@
#!/bin/sh
emacs_pid=$(pidof emacs)
if [ -z "$emacs_pid" ]; then
echo ""
exit 0
fi
CLOCK_STATUS=$(emacsclient --eval "(bergheim/org-clock-status)" 2>/dev/null)
echo "${CLOCK_STATUS:1:-1}"

View File

@ -1,7 +1,7 @@
{ {
"layer": "top", // Waybar at top layer "layer": "top", // Waybar at top layer
"height": 25, // Waybar height (to be removed for auto height) "height": 25, // Waybar height (to be removed for auto height)
"modules-left": ["sway/workspaces"], "modules-left": ["sway/workspaces", "custom/org-pomodoro"],
"modules-center": ["clock"], "modules-center": ["clock"],
"modules-right": ["mpd", "network", "pulseaudio", "battery", "battery#bat2"], "modules-right": ["mpd", "network", "pulseaudio", "battery", "battery#bat2"],
// Modules configuration // Modules configuration
@ -20,9 +20,6 @@
// "default": "" // "default": ""
// } // }
// }, // },
"sway/mode": {
"format": "<span style=\"italic\">{}</span>"
},
"mpd": { "mpd": {
"format": "<span foreground='#88C0D0'>{stateIcon}</span> {title}", "format": "<span foreground='#88C0D0'>{stateIcon}</span> {title}",
"format-disconnected": "", "format-disconnected": "",
@ -39,17 +36,6 @@
"tooltip-format": "MPD (connected)", "tooltip-format": "MPD (connected)",
"tooltip-format-disconnected": "MPD (disconnected)" "tooltip-format-disconnected": "MPD (disconnected)"
}, },
"idle_inhibitor": {
"format": "{icon}",
"format-icons": {
"activated": "",
"deactivated": ""
}
},
"tray": {
// "icon-size": 21,
"spacing": 10
},
"clock": { "clock": {
"format": "{:%a %d %b %H:%M}", "format": "{:%a %d %b %H:%M}",
"format-alt": "{:%Y-%m-%d}" "format-alt": "{:%Y-%m-%d}"
@ -104,16 +90,9 @@
}, },
"on-click": "" "on-click": ""
}, },
"custom/media": { "custom/org-pomodoro": {
"format": "{icon} {}", "format": "<span foreground='#88C0D0'>祥</span> {}",
"return-type": "json", "exec": "$HOME/.local/share/scripts/org-clock-status",
"max-length": 40, "interval": 2
"format-icons": {
"spotify": "",
"default": "🎜"
},
"escape": true,
"exec": "$HOME/.config/waybar/mediaplayer.py 2> /dev/null" // Script in resources folder
// "exec": "$HOME/.config/waybar/mediaplayer.py --player spotify 2> /dev/null" // Filter player based on name
} }
} }

View File

@ -73,6 +73,9 @@ window#waybar.chromium {
padding: 0 10px; padding: 0 10px;
margin: 0 4px; margin: 0 4px;
} }
#custom-org-pomodoro{
padding: 0 10px;
}
#clock { #clock {
} }