Skip to content

Commit e441d5c

Browse files
author
dotfiles-bot
committed
upd latam
1 parent c9e8519 commit e441d5c

File tree

2 files changed

+27
-17
lines changed

2 files changed

+27
-17
lines changed

β€Žmodules/desktop/wm/labwc/autostartβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ setxkbmap latam
88
# Set wallpaper to teal (Windows 95 default)
99
swaybg -c 008080 &
1010

11-
# Start waybar with Windows 95 style
12-
waybar &
11+
# Start waybar with explicit config paths
12+
waybar -c ~/.config/waybar/config.jsonc -s ~/.config/waybar/style.css &
1313

1414
# Notification daemon (optional)
1515
# mako &

β€Žmodules/desktop/wm/waybar/config.jsoncβ€Ž

Lines changed: 25 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,28 @@
11
{
22
// Waybar Configuration - Windows 95/98 Taskbar Style
3-
// Path: ~/.config/waybar/config-win95
4-
3+
// Path: ~/.config/waybar/config.jsonc
54
"layer": "top",
65
"position": "bottom",
76
"height": 28,
87
"spacing": 0,
9-
10-
"modules-left": ["custom/start", "wlr/taskbar"],
8+
"modules-left": [
9+
"custom/start",
10+
"wlr/taskbar"
11+
],
1112
"modules-center": [],
12-
"modules-right": ["tray", "pulseaudio", "network", "battery", "clock"],
13-
13+
"modules-right": [
14+
"tray",
15+
"pulseaudio",
16+
"network",
17+
"battery",
18+
"clock"
19+
],
1420
// ===== START BUTTON =====
1521
"custom/start": {
1622
"format": " Start",
1723
"on-click": "dmenu_run -fn 'Sans-9' -nb '#C0C0C0' -nf '#000000' -sb '#000080' -sf '#FFFFFF'",
1824
"tooltip": false
1925
},
20-
2126
// ===== TASKBAR (Window List) =====
2227
"wlr/taskbar": {
2328
"format": "{icon} {title}",
@@ -33,24 +38,25 @@
3338
"Alacritty": "Terminal"
3439
}
3540
},
36-
3741
// ===== SYSTEM TRAY =====
3842
"tray": {
3943
"icon-size": 16,
4044
"spacing": 4
4145
},
42-
4346
// ===== AUDIO =====
4447
"pulseaudio": {
4548
"format": "{icon} {volume}%",
4649
"format-muted": "πŸ”‡ Mute",
4750
"format-icons": {
48-
"default": ["πŸ”ˆ", "πŸ”‰", "πŸ”Š"]
51+
"default": [
52+
"πŸ”ˆ",
53+
"πŸ”‰",
54+
"πŸ”Š"
55+
]
4956
},
5057
"on-click": "pavucontrol",
5158
"tooltip-format": "{desc}: {volume}%"
5259
},
53-
5460
// ===== NETWORK =====
5561
"network": {
5662
"format-wifi": "πŸ“Ά {essid}",
@@ -60,7 +66,6 @@
6066
"tooltip-format-wifi": "{essid} ({signalStrength}%): {ipaddr}",
6167
"on-click": "nm-connection-editor"
6268
},
63-
6469
// ===== BATTERY =====
6570
"battery": {
6671
"states": {
@@ -70,9 +75,14 @@
7075
"format": "{icon} {capacity}%",
7176
"format-charging": "πŸ”Œ {capacity}%",
7277
"format-plugged": "πŸ”Œ {capacity}%",
73-
"format-icons": ["πŸͺ«", "πŸ”‹", "πŸ”‹", "πŸ”‹", "πŸ”‹"]
78+
"format-icons": [
79+
"πŸͺ«",
80+
"πŸ”‹",
81+
"πŸ”‹",
82+
"πŸ”‹",
83+
"πŸ”‹"
84+
]
7485
},
75-
7686
// ===== CLOCK (Bottom-right, classic Windows 95 style) =====
7787
"clock": {
7888
"interval": 1,
@@ -88,4 +98,4 @@
8898
}
8999
}
90100
}
91-
}
101+
}

0 commit comments

Comments
Β (0)