mirror of
https://github.com/JakeStanger/ironbar.git
synced 2026-07-11 09:15:22 +01:00
[GH-ISSUE #467] Modules not responding to icon settings #5778
Labels
No labels
A:Build
A:CI
A:Client
A:Config
A:Core
A:Documentation
A:Documentation
A:IPC
A:Testing
A:UX/UI
blocked
BREAKING CHANGE
duplicate
good first issue
GTK4
help wanted
invalid
M:Battery
M:Battery
M:Bindmode
M:Bluetooth
M:Brightness
M:Cairo
M:Clipboard
M:Clock
M:Clock
M:Custom
M:Focused
M:Keyboard
M:Launcher
M:Menu
M:Music
M:Music
M:Music
M:Network Manager
M:Notifications
M:SysInfo
M:Tray
M:Volume
M:Workspaces
partially resolved
P:Critical
P:High
P:Low
P:Medium
pull-request
T:Bug
T:Bug
T:Core Enhancement
T:Module Enhancement
T:New Module
T:Question
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
JakeStanger/ironbar#5778
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @sporcupine on GitHub (Feb 23, 2024).
Original GitHub issue: https://github.com/JakeStanger/ironbar/issues/467
Describe the bug
Traits relating to icons such as show-icon and icon-size have no effect on tray behavior
To Reproduce
Expected behavior
Icon traits should respond to configuration options
System information:
Configuration
Config
```{
"position": "top",
"height": 30,
"icon_theme": "icon:Vivid-Glassy-Dark-Icons",
"start": [
{
"type": "clock",
"format": "%H:%M",
"class": ""
}
],
"center": [
{
"type": "focused",
"show-icon": false, // has no effect
"show-title": true
}
],
"end": [
{
"type": "music",
"player_type": "mpris",
"format": "{title} / {artist}",
"truncate": "end",
"icons": {
"play": "",
"pause": ""
}
},
{
"type": "upower",
"icon-size": "12" // has no effect
}
]
}
font-family: Noto Serif Mono, mono;
font-weight: 600;
font-size: 14px;
background: none;
border: none;
}
.clock:hover {
background-color: rgba(0, 0, 0, 0);
color: #33ccff;
}
.background {
border-bottom: 2px solid;
border-image: linear-gradient(45deg, #33ccff, #00ff99) 200;
background-color: rgba(30, 30, 46, 0.75);
}
.popup-clock, .popup-music {
background-color: rgba(30, 30, 46, 1);
}
.popup {
border: none;
}
@sporcupine commented on GitHub (Feb 23, 2024):
I'm stupid and mixed up hyphens with underscores 💀