Changes colors for waybar

This commit is contained in:
Michel Fedde 2025-03-01 16:45:27 +01:00
parent d7109d4836
commit 9952a7ffd3
2 changed files with 30 additions and 16 deletions

View file

@ -1,23 +1,27 @@
[Application] [Application]
WindowWidth = 3420 WindowWidth = 1702
WindowHeight = 1382 WindowHeight = 1382
LastCheckedVersion = 'v0.14.0' LastCheckedVersion = 'v0.14.0'
LastLaunchedVersion = 'v0.13.2' LastLaunchedVersion = 'v0.14.0'
EnableSystemTray = true EnableSystemTray = true
CloseToSystemTray = false CloseToSystemTray = false
StartupPage = 'Albums' StartupPage = 'Albums'
SettingsTab = 'Experimental' SettingsTab = ''
AllowMultiInstance = false AllowMultiInstance = false
MaxImageCacheSizeMB = 50 MaxImageCacheSizeMB = 50
SavePlayQueue = true SavePlayQueue = true
SaveQueueToServer = false SaveQueueToServer = false
DefaultPlaylistID = '' DefaultPlaylistID = '990aff5f-ab5c-499f-bfa9-c86a698177c4'
AddToPlaylistSkipDuplicates = false AddToPlaylistSkipDuplicates = false
ShowTrackChangeNotification = false ShowTrackChangeNotification = false
EnableLrcLib = true EnableLrcLib = true
CustomLrcLibUrl = ''
EnablePasswordStorage = true
SkipSSLVerify = false SkipSSLVerify = false
EnqueueBatchSize = 100 EnqueueBatchSize = 100
Language = 'auto' Language = 'auto'
DisableDPIDetection = false
EnableAutoUpdateChecker = true
FontNormalTTF = '' FontNormalTTF = ''
FontBoldTTF = '' FontBoldTTF = ''
UIScaleSize = 'Normal' UIScaleSize = 'Normal'
@ -38,6 +42,7 @@ TracklistColumns = ['Artist', 'Time', 'Plays', 'Favorite', 'Rating']
[AlbumsPage] [AlbumsPage]
SortOrder = 'Recently Added' SortOrder = 'Recently Added'
ShowYears = false ShowYears = false
ShuffleMode = 'Tracks'
[ArtistPage] [ArtistPage]
InitialView = 'Discography' InitialView = 'Discography'
@ -62,7 +67,11 @@ InitialView = 'List'
TracklistColumns = ['Album', 'Time', 'Plays'] TracklistColumns = ['Album', 'Time', 'Plays']
[NowPlayingConfig] [NowPlayingConfig]
InitialView = 'Play Queue' InitialView = 'Lyrics'
[Playback]
Autoplay = false
RepeatMode = 'None'
[LocalPlayback] [LocalPlayback]
AudioDeviceName = 'auto' AudioDeviceName = 'auto'

View file

@ -3,6 +3,10 @@
@import "../../.cache/wal/colors-waybar.css"; @import "../../.cache/wal/colors-waybar.css";
@define-color red @color1;
@define-color green @color2;
@define-color orange @color3;
* { * {
font-family: "JetBrainsMono Nerd Font"; font-family: "JetBrainsMono Nerd Font";
font-weight: bold; font-weight: bold;
@ -23,20 +27,21 @@ window#waybar {
#taskbar button, #taskbar button,
#workspaces button { #workspaces button {
color: @foreground; color: @foreground;
border-radius: 0.3rem;
} }
#taskbar button.active, #taskbar button.active,
#workspaces button.active { #workspaces button.active {
border-bottom: 1px solid green; border-bottom: 1px solid @green;
} }
#taskbar button.urgent, #taskbar button.urgent,
#workspaces button.urgent { #workspaces button.urgent {
border-bottom: 2px solid red; border-bottom: 2px solid @orange;
} }
#submap { #submap {
border-bottom: 1px solid red; border-bottom: 1px solid @red;
} }
#backlight, #backlight,
@ -100,7 +105,7 @@ window#waybar {
#memory.warning, #memory.warning,
#cpu.warning { #cpu.warning {
border-top: 3px solid @background; border-top: 3px solid @background;
border-bottom: 3px solid yellow; border-bottom: 3px solid @yellow;
} }
@keyframes blink { @keyframes blink {
@ -131,16 +136,16 @@ window#waybar {
#memory.critical, #memory.critical,
#cpu.critical { #cpu.critical {
border-top: 3px solid @background; border-top: 3px solid @background;
border-bottom: 3px solid red; border-bottom: 3px solid @red;
} }
#temperature.critical { #temperature.critical {
background-color: red; background-color: @red;
} }
#battery.charging { #battery.charging {
border-top: 3px solid @background; border-top: 3px solid @background;
border-bottom: 3px solid green; border-bottom: 3px solid @green;
} }
#pulseaudio-slider slider { #pulseaudio-slider slider {
@ -162,7 +167,7 @@ window#waybar {
#pulseaudio-slider highlight { #pulseaudio-slider highlight {
min-height: 10px; min-height: 10px;
border-radius: 5px; border-radius: 5px;
background-color: @color3; background-color: @orange;
} }
#backlight-slider slider { #backlight-slider slider {
@ -184,13 +189,13 @@ window#waybar {
#backlight-slider highlight { #backlight-slider highlight {
min-width: 10px; min-width: 10px;
border-radius: 5px; border-radius: 5px;
background-color: @color3; background-color: @orange;
} }
#custom-swaync { #custom-swaync {
min-width: 1px; min-width: 10px;
border-right: 1px solid @cursor; border-right: 1px solid @cursor;
} }
#custom-swaync:hover { #custom-swaync:hover {
background-color: @cursor; background-color: @green;
} }