From 9952a7ffd3857b830fc6e3290593a7da6ac806dd Mon Sep 17 00:00:00 2001 From: Michel Fedde Date: Sat, 1 Mar 2025 16:45:27 +0100 Subject: [PATCH] Changes colors for waybar --- .config/supersonic/config.toml | 19 ++++++++++++++----- .config/waybar/style.css | 27 ++++++++++++++++----------- 2 files changed, 30 insertions(+), 16 deletions(-) diff --git a/.config/supersonic/config.toml b/.config/supersonic/config.toml index 473972c..2d5b7e5 100644 --- a/.config/supersonic/config.toml +++ b/.config/supersonic/config.toml @@ -1,23 +1,27 @@ [Application] -WindowWidth = 3420 +WindowWidth = 1702 WindowHeight = 1382 LastCheckedVersion = 'v0.14.0' -LastLaunchedVersion = 'v0.13.2' +LastLaunchedVersion = 'v0.14.0' EnableSystemTray = true CloseToSystemTray = false StartupPage = 'Albums' -SettingsTab = 'Experimental' +SettingsTab = '' AllowMultiInstance = false MaxImageCacheSizeMB = 50 SavePlayQueue = true SaveQueueToServer = false -DefaultPlaylistID = '' +DefaultPlaylistID = '990aff5f-ab5c-499f-bfa9-c86a698177c4' AddToPlaylistSkipDuplicates = false ShowTrackChangeNotification = false EnableLrcLib = true +CustomLrcLibUrl = '' +EnablePasswordStorage = true SkipSSLVerify = false EnqueueBatchSize = 100 Language = 'auto' +DisableDPIDetection = false +EnableAutoUpdateChecker = true FontNormalTTF = '' FontBoldTTF = '' UIScaleSize = 'Normal' @@ -38,6 +42,7 @@ TracklistColumns = ['Artist', 'Time', 'Plays', 'Favorite', 'Rating'] [AlbumsPage] SortOrder = 'Recently Added' ShowYears = false +ShuffleMode = 'Tracks' [ArtistPage] InitialView = 'Discography' @@ -62,7 +67,11 @@ InitialView = 'List' TracklistColumns = ['Album', 'Time', 'Plays'] [NowPlayingConfig] -InitialView = 'Play Queue' +InitialView = 'Lyrics' + +[Playback] +Autoplay = false +RepeatMode = 'None' [LocalPlayback] AudioDeviceName = 'auto' diff --git a/.config/waybar/style.css b/.config/waybar/style.css index dd74ea6..00fa8cc 100644 --- a/.config/waybar/style.css +++ b/.config/waybar/style.css @@ -3,6 +3,10 @@ @import "../../.cache/wal/colors-waybar.css"; +@define-color red @color1; +@define-color green @color2; +@define-color orange @color3; + * { font-family: "JetBrainsMono Nerd Font"; font-weight: bold; @@ -23,20 +27,21 @@ window#waybar { #taskbar button, #workspaces button { color: @foreground; + border-radius: 0.3rem; } #taskbar button.active, #workspaces button.active { - border-bottom: 1px solid green; + border-bottom: 1px solid @green; } #taskbar button.urgent, #workspaces button.urgent { - border-bottom: 2px solid red; + border-bottom: 2px solid @orange; } #submap { - border-bottom: 1px solid red; + border-bottom: 1px solid @red; } #backlight, @@ -100,7 +105,7 @@ window#waybar { #memory.warning, #cpu.warning { border-top: 3px solid @background; - border-bottom: 3px solid yellow; + border-bottom: 3px solid @yellow; } @keyframes blink { @@ -131,16 +136,16 @@ window#waybar { #memory.critical, #cpu.critical { border-top: 3px solid @background; - border-bottom: 3px solid red; + border-bottom: 3px solid @red; } #temperature.critical { - background-color: red; + background-color: @red; } #battery.charging { border-top: 3px solid @background; - border-bottom: 3px solid green; + border-bottom: 3px solid @green; } #pulseaudio-slider slider { @@ -162,7 +167,7 @@ window#waybar { #pulseaudio-slider highlight { min-height: 10px; border-radius: 5px; - background-color: @color3; + background-color: @orange; } #backlight-slider slider { @@ -184,13 +189,13 @@ window#waybar { #backlight-slider highlight { min-width: 10px; border-radius: 5px; - background-color: @color3; + background-color: @orange; } #custom-swaync { - min-width: 1px; + min-width: 10px; border-right: 1px solid @cursor; } #custom-swaync:hover { - background-color: @cursor; + background-color: @green; }