diff --git a/CHANGELOGS.md b/CHANGELOGS.md index 99d3e22..e592273 100644 --- a/CHANGELOGS.md +++ b/CHANGELOGS.md @@ -1,11 +1,4 @@ ## Changelogs -## 30-Sep-2023 -- added gnome-system-monitor (right click cpu module in waybar) - -## 27-Sep-2023 -- remove auto start of portal-hyprland-hyprland -- removal of Virtual-1 monitor in Monitors.conf - -## 22-Sep-2023 -- initial release +## 12-Oct-2023 +- BETA release diff --git a/README.md b/README.md index 08aefde..4c63033 100644 --- a/README.md +++ b/README.md @@ -6,9 +6,9 @@ - if you have manually installed Debian, make sure that "deb-src's" are enabled in your /etc/apt/sources.list. By default, it will enable the first line with deb-src -![alt text](https://github.com/JaKooLit/Fedora-Hyprland/blob/main/screenshots/dual_panel-light-dark-switch.png) +![alt text](https://github.com/JaKooLit/Debian-Hyprland/blob/main/screenshots/default-dark.png) -![alt text](https://github.com/JaKooLit/Fedora-Hyprland/blob/main/screenshots/default-light-dark.png) +![alt text](https://github.com/JaKooLit/Debian-Hyprland/blob/main/screenshots/switching-dark-light.png) ### 📷 you can find more screenshots in the screenshots directory diff --git a/config/hypr/waybar/style/style-dark.css b/config/hypr/waybar/style/style-dark.css index 7fa9910..b21aac7 100644 --- a/config/hypr/waybar/style/style-dark.css +++ b/config/hypr/waybar/style/style-dark.css @@ -8,67 +8,76 @@ padding: 0px; margin-top: 1px; margin-bottom: 1px; + } window#waybar { - background: rgba(0, 0, 0, 0) + background: rgba(0, 0, 0, 0); + /*border-bottom: 1px solid @unfocused_borders;*/ + /*border-radius: 10px;*/ + /*color: #cba6f7;*/ + /*border: 1px solid #cba6f7;*/ } window#waybar.hidden { - opacity: 0.5; + opacity: 0.5; + } + + tooltip { + background: rgba(0, 0, 0, 0.6); + border-radius: 10px; + /*border: 1px solid #cba6f7;*/ } - tooltip { - background: #373737; - border-radius: 10px; - border-width: 2px; - border-style: solid; - border-color: #373737; + tooltip label { + color: #cba6f7; + margin-right: 2px; + margin-left: 2px; } /*-----module groups----*/ .modules-right { - background-color: #373737; - border: 0px solid #191919; - border-radius: 10px; + background-color: rgba(0, 0, 0, 0.6); + border: 0px solid #b4befe; + border-radius: 10px; } .modules-center { - background-color: #373737; - border: 0px solid #373737; - border-radius: 10px; + background-color: rgba(0, 0, 0, 0.6); + border: 0px solid #b4befe; + border-radius: 10px; } .modules-left { - background-color: #373737; - border: 0px solid #373737; - border-radius: 10px; - + background-color: rgba(0, 0, 0, 0.6); + border: 0px solid #b4befe; + border-radius: 10px; + } #workspaces button { - padding: 2px; - color: #4f4f4f; - margin-right: 5px; + padding: 2px; + color: #6E6A86; + margin-right: 5px; } - + #workspaces button.active { - color: #7aa2f7; - border-radius: 15px 15px 15px 15px; + color: #cba6f7; + border-radius: 15px 15px 15px 15px; } - + #workspaces button.focused { - color: #d8dee9; + color: #d8dee9; } - + #workspaces button.urgent { - color: #11111b; - border-radius: 10px; + color: #11111b; + border-radius: 10px; } - + #workspaces button:hover { - color: #fff; - border-radius: 15px; + color: #9CCFD8; + border-radius: 15px; } #clock, @@ -87,6 +96,8 @@ #window, #idle_inhibitor, #keyboard-state, + #keyboard-state label, + #keyboard-state label.locked, #mpd, #bluetooth, #taskbar, @@ -110,8 +121,9 @@ #custom-weather.rainyNight, #custom-weather.showyIcyDay, #custom-weather.snowyIcyNight, - #custom-weather.default #idle_inhibitor { - color: #7aa2f7; + #custom-weather.default, + #idle_inhibitor { + color: #cba7f7; padding: 0px 10px; border-radius: 10px; } diff --git a/screenshots/default-dark.png b/screenshots/default-dark.png new file mode 100644 index 0000000..420b763 Binary files /dev/null and b/screenshots/default-dark.png differ diff --git a/screenshots/switching-dark-light.png b/screenshots/switching-dark-light.png new file mode 100644 index 0000000..827ada8 Binary files /dev/null and b/screenshots/switching-dark-light.png differ