···11-// Things I want (Maybe I'll create my own panel at some point)
22-// App Menu Icon
33-// - [X] On left click opens App menu with all desktop applications
44-// - [ ] Needs image module
55-// App Quick Launch
66-// - [ ] On left click open/focus app
77-// - [ ] On right click show option menu for app
88-// - [ ] firefox
99-// - [ ] foot
1010-//
1111-// Random Icon
1212-// - [ ] Randomly displays a custom icon
1313-//
1414-// Tray
1515-// - [X] Generic system tray for whatever ends up using it
1616-// Volume Level & Control
1717-// - [ ] Requires image module
1818-// - [X] Sink
1919-// - [X] Muted / Unmuted
2020-// - [X] Source
2121-// - [X] Mute / Unmuted
2222-// - [X] On left click open pavucontrol or some other volume control application
2323-// - [X] On right click mute
2424-// - [ ] On hover show volume percentage
2525-// WiFi & Wired Network
2626-// - [ ] Requires image module
2727-// - [ ] Show if on WiFi or Ethernet
2828-// - [ ] If on WiFi show signal strength
2929-// - [ ] On hover show Network Name
3030-// - [ ] On left- click open network manager
3131-// Battery Status & Level
3232-// - [ ] Requires image module
3333-// - [ ] Four States
3434-// - [X] High >40
3535-// - [X] Medium <40, >25
3636-// - [X] Low <25
3737-// - [X] Dead =0
3838-// - [ ] On left click open battery management gui (Maybe something ill make myself)
3939-// Time & Date
4040-// - [X] Show time
4141-// - [X] On scroll switch between UTC and ET
4242-// - [X] On hover show date
4343-// - [ ] On left click open calendar app
4444-// Notification Center
4545-// - [ ] Would just be an icon
4646-// - [ ] Two states
4747-// - [ ] No notifications
4848-// - [ ] Notifications
4949-// - [ ] Opens a notification center on left click
5050-// - [ ] Clears all notifications on right click
5151-// Powermenu
5252-// - [ ] On left click opens power menu
5353-5454-[
5555- {
5656- "layer": "top",
5757- "position": "left",
5858- "width": 64,
5959- "modules-left": [ "custom/appmenu" ],
6060- "modules-center": [ "custom/randomtext" ],
6161- "modules-right": [ "tray", "pulseaudio#sink", "pulseaudio#source", "custom/wifi",
6262- "battery", "clock", "custom/notifications", "custom/powermenu" ],
6363- "name": "topbar",
6464-6565- "custom/appmenu": {
6666- "format": "APPS", // replace with image
6767- "on-click": "bemenu-run", // replace with an actual app menu
6868- "tooltip": false
6969- },
7070-7171- "custom/randomtext": {
7272- "exec": "${XDG_CONFIG_HOME:-$HOME/.config}/waybar/randomtext.sh",
7373- "interval": 3600,
7474- "format": "{}",
7575- "tooltip": false,
7676- "rotate": 90
7777- },
7878-7979- "tray": {
8080- "icon-size": 32,
8181- "spacing": 6
8282- },
8383-8484- "pulseaudio#sink": {
8585- "format": "{volume}%",
8686- "format-muted": "MUTE",
8787- "scroll-step": 0,
8888- "on-click": "pavucontrol",
8989- "on-click-right": "pactl set-sink-mute @DEFAULT_SINK@ toggle",
9090- "tooltip": false
9191- },
9292-9393- "pulseaudio#source": {
9494- "format": "{format_source}",
9595- "format-source": "{volume}%",
9696- "format-source-muted": "MUTE",
9797- "scroll-step": 0,
9898- "on-click": "pavucontrol",
9999- "on-click-right": "pactl set-source-mute @DEFAULT_SOURCE@ toggle",
100100- "tooltip": false
101101- },
102102-103103- "custom/wifi": {
104104- "format": "WIFI",
105105- "on-click": "iwgtk",
106106- "tooltip": false
107107- },
108108-109109- "battery": {
110110- "states": {
111111- "med": 40,
112112- "low": 25,
113113- "dead": 0 // how.
114114- },
115115- "tooltip": false
116116- },
117117-118118- "clock": {
119119- "interval": 1,
120120- "format": "{:%R}",
121121- "timezones": [ "America/New_York", "UTC" ],
122122- "tooltip": true,
123123- "tooltip-format": "{:%e %a %b %Y %Z}"
124124- },
125125-126126- "custom/notifications": {
127127- "format": "NOTI",
128128- "tooltip": false
129129- },
130130-131131- "custom/powermenu": {
132132- "format": "POWER",
133133- "on-click": "powermenu",
134134- "tooltip": false
135135- }
136136- }
137137-]
-31
data/configs/waybar/random.txt
···11-MeYou
22-little moupot
33-minimou
44-pocket mou
55-rembr hav fun asnd bef very y nice, youral l my friends
66-yemou
77-Me or You?
88-Nap Time
99-Hug Time
1010-Tea Time
1111-mugi mugi
1212-uwu
1313-wo
1414-lint cult
1515-uh oh
1616-vibing
1717-nom nom
1818-gaming
1919-gentoo
2020-gentuwu
2121-nor nor
2222-atty
2323-moni moni
2424-genchu
2525-rae rae
2626-woooooooooooosh
2727-yem yem
2828-wa
2929-lutea
3030-wa!
3131-wa!_OS
-4
data/configs/waybar/randomtext.sh
···11-#!/bin/sh
22-# Pick a random line from
33-44-printf '%s' "$(shuf "${XDG_CONFIG_HOME:-$HOME/.config}/waybar/random.txt" | head -n1)"