diff options
73 files changed, 1499 insertions, 1195 deletions
diff --git a/config/hypr/UserConfigs/UserAnimations.conf b/config/hypr/UserConfigs/UserAnimations.conf new file mode 100644 index 00000000..0f40b5e6 --- /dev/null +++ b/config/hypr/UserConfigs/UserAnimations.conf @@ -0,0 +1,26 @@ +# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # + +animations { + enabled = yes + + bezier = wind, 0.05, 0.9, 0.1, 1.05 + bezier = winIn, 0.1, 1.1, 0.1, 1.1 + bezier = winOut, 0.3, -0.3, 0, 1 + bezier = liner, 1, 1, 1, 1 + bezier = overshot, 0.05, 0.9, 0.1, 1.05 + bezier = smoothOut, 0.5, 0, 0.99, 0.99 + bezier = smoothIn, 0.5, -0.5, 0.68, 1.5 + + animation = windows, 1, 6, wind, slide + animation = windowsIn, 1, 5, winIn, slide + animation = windowsOut, 1, 3, smoothOut, slide + animation = windowsMove, 1, 5, wind, slide + animation = border, 1, 1, liner + animation = borderangle, 1, 180, liner, loop #used by rainbow borders and rotating colors + animation = fade, 1, 3, smoothOut + animation = workspaces, 1, 5, overshot + + # animations for -git or version >0.42.0 + animation = workspacesIn, 1, 5, winIn, slide + animation = workspacesOut, 1, 5, winOut, slide +}
\ No newline at end of file diff --git a/config/hypr/UserConfigs/UserDecorAnimations.conf b/config/hypr/UserConfigs/UserDecorations.conf index 2a75cdd8..f076487c 100644 --- a/config/hypr/UserConfigs/UserDecorAnimations.conf +++ b/config/hypr/UserConfigs/UserDecorations.conf @@ -1,5 +1,5 @@ # /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # -# Decoration and Animations Settings +# Decoration Settings # Hyprland Wiki Links # Animation - https://wiki.hyprland.org/Configuring/Animations/ @@ -55,29 +55,4 @@ group { groupbar { col.active = $color0 } -} - -animations { - enabled = yes - - bezier = wind, 0.05, 0.9, 0.1, 1.05 - bezier = winIn, 0.1, 1.1, 0.1, 1.1 - bezier = winOut, 0.3, -0.3, 0, 1 - bezier = liner, 1, 1, 1, 1 - bezier = overshot, 0.05, 0.9, 0.1, 1.05 - bezier = smoothOut, 0.5, 0, 0.99, 0.99 - bezier = smoothIn, 0.5, -0.5, 0.68, 1.5 - - animation = windows, 1, 6, wind, slide - animation = windowsIn, 1, 5, winIn, slide - animation = windowsOut, 1, 3, smoothOut, slide - animation = windowsMove, 1, 5, wind, slide - animation = border, 1, 1, liner - animation = borderangle, 1, 180, liner, loop #used by rainbow borders and rotating colors - animation = fade, 1, 3, smoothOut - animation = workspaces, 1, 5, overshot - - # animations for -git or version >0.42.0 - animation = workspacesIn, 1, 5, winIn, slide - animation = workspacesOut, 1, 5, winOut, slide }
\ No newline at end of file diff --git a/config/hypr/UserScripts/Animations.sh b/config/hypr/UserScripts/Animations.sh new file mode 100755 index 00000000..02755a5e --- /dev/null +++ b/config/hypr/UserScripts/Animations.sh @@ -0,0 +1,35 @@ +#!/bin/bash +# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## +# For applying Animations from different users + +# Check if rofi is already running +if pidof rofi > /dev/null; then + pkill rofi +fi + +# Variables +iDIR="$HOME/.config/swaync/images" +SCRIPTSDIR="$HOME/.config/hypr/scripts" +animations_dir="$HOME/.config/hypr/animations" +UserConfigs="$HOME/.config/hypr/UserConfigs" + +# list of animation files +animations_list=$(find "$animations_dir" -maxdepth 1 -type f | sed 's/.*\///' | sed 's/\.conf$//') + +# Rofi Menu +chosen_file=$(echo "$animations_list" | rofi -i -dmenu -config ~/.config/rofi/config-rofi-Animations.rasi "Choose animation:") + +# Check if a file was selected +if [[ -n "$chosen_file" ]]; then + # Find the full path of the chosen file + full_path="$animations_dir/$chosen_file.conf" + + cp "$full_path" "$UserConfigs/UserAnimations.conf" + + notify-send -i "$iDIR/ja.png" "$chosen_file" "Animation Loaded" +else + notify-send -i "$iDIR/ja.png" "You chose to" "NOT apply other animations" +fi + +sleep 1 +"$SCRIPTSDIR/RefreshNoWaybar.sh" diff --git a/config/hypr/UserScripts/QuickEdit.sh b/config/hypr/UserScripts/QuickEdit.sh index 48d5f49a..e5c26e20 100755 --- a/config/hypr/UserScripts/QuickEdit.sh +++ b/config/hypr/UserScripts/QuickEdit.sh @@ -20,10 +20,11 @@ menu() { 5. View / Edit Monitors 6. View / Edit Laptop-Keybinds 7. View / Edit User-Settings -8. View / Edit Decorations & Animations -9. View / Edit Workspace-Rules -10. View / Edit Default-Settings -11. View / Edit Default-Keybinds +8. View / Edit Decorations +9. View / Edit Animations +10. View / Edit Workspace-Rules +11. View / Edit Default-Settings +12. View / Edit Default-Keybinds EOF } @@ -40,10 +41,11 @@ main() { 5) file="$UserConfigs/Monitors.conf" ;; 6) file="$UserConfigs/Laptops.conf" ;; 7) file="$UserConfigs/UserSettings.conf" ;; - 8) file="$UserConfigs/UserDecorAnimations.conf" ;; - 9) file="$UserConfigs/WorkspaceRules.conf" ;; - 10) file="$configs/Settings.conf" ;; - 11) file="$configs/Keybinds.conf" ;; + 8) file="$UserConfigs/UserDecorations.conf" ;; + 9) file="$UserConfigs/UserAnimations.conf" ;; + 10) file="$UserConfigs/WorkspaceRules.conf" ;; + 11) file="$configs/Settings.conf" ;; + 12) file="$configs/Keybinds.conf" ;; *) return ;; # Do nothing for invalid choices esac diff --git a/config/hypr/UserScripts/ZshChangeTheme.sh b/config/hypr/UserScripts/ZshChangeTheme.sh index 93cc4bf7..edfc2ecd 100755 --- a/config/hypr/UserScripts/ZshChangeTheme.sh +++ b/config/hypr/UserScripts/ZshChangeTheme.sh @@ -51,7 +51,7 @@ main() { sed -i "s/^$var_name=.*/$var_name=\"$theme_to_set\"/" "$zsh_path" notify-send -i "$iDIR/ja.png" "OMZ theme" "applied. restart your terminal" else - notify-send "Error:" "~.zshrc file not found!" + notify-send -i "$iDIR/ja.png" "Error:" "~.zshrc file not found!" fi } diff --git a/config/hypr/animations/END-4.conf b/config/hypr/animations/END-4.conf new file mode 100644 index 00000000..0ab8d1af --- /dev/null +++ b/config/hypr/animations/END-4.conf @@ -0,0 +1,40 @@ +# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# +# name "End-4" +# credit https://github.com/end-4/dots-hyprland + +animations { + enabled = true + # Animation curves + + bezier = linear, 0, 0, 1, 1 + bezier = md3_standard, 0.2, 0, 0, 1 + bezier = md3_decel, 0.05, 0.7, 0.1, 1 + bezier = md3_accel, 0.3, 0, 0.8, 0.15 + bezier = overshot, 0.05, 0.9, 0.1, 1.1 + bezier = crazyshot, 0.1, 1.5, 0.76, 0.92 + bezier = hyprnostretch, 0.05, 0.9, 0.1, 1.0 + bezier = menu_decel, 0.1, 1, 0, 1 + bezier = menu_accel, 0.38, 0.04, 1, 0.07 + bezier = easeInOutCirc, 0.85, 0, 0.15, 1 + bezier = easeOutCirc, 0, 0.55, 0.45, 1 + bezier = easeOutExpo, 0.16, 1, 0.3, 1 + bezier = softAcDecel, 0.26, 0.26, 0.15, 1 + bezier = md2, 0.4, 0, 0.2, 1 # use with .2s duration + # Animation configs + animation = windows, 1, 3, md3_decel, popin 60% + animation = windowsIn, 1, 3, md3_decel, popin 60% + animation = windowsOut, 1, 3, md3_accel, popin 60% + animation = border, 1, 10, default + animation = fade, 1, 3, md3_decel + # animation = layers, 1, 2, md3_decel, slide + animation = layersIn, 1, 3, menu_decel, slide + animation = layersOut, 1, 1.6, menu_accel + animation = fadeLayersIn, 1, 2, menu_decel + animation = fadeLayersOut, 1, 4.5, menu_accel + animation = workspaces, 1, 7, menu_decel, slide + # animation = workspaces, 1, 2.5, softAcDecel, slide + # animation = workspaces, 1, 7, menu_decel, slidefade 15% + # animation = specialWorkspace, 1, 3, md3_decel, slidefadevert 15% + animation = specialWorkspace, 1, 3, md3_decel, slidevert +} diff --git a/config/hypr/animations/HYDE - Vertical.conf b/config/hypr/animations/HYDE - Vertical.conf new file mode 100644 index 00000000..ccceccf4 --- /dev/null +++ b/config/hypr/animations/HYDE - Vertical.conf @@ -0,0 +1,34 @@ +# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# +# name "Vertical" +# credit https://github.com/prasanthrangan/hyprdots + +animations { + enabled = yes + + bezier = fluent_decel, 0, 0.2, 0.4, 1 + bezier = easeOutCirc, 0, 0.55, 0.45, 1 + bezier = easeOutCubic, 0.33, 1, 0.68, 1 + bezier = easeinoutsine, 0.37, 0, 0.63, 1 + + # Windows + animation = windowsIn, 1, 1.5, easeinoutsine, popin 60% # window open + animation = windowsOut, 1, 1.5, easeOutCubic, popin 60% # window close. + animation = windowsMove, 1, 1.5, easeinoutsine, slide # everything in between, moving, dragging, resizing. + + # Fading + animation = fade, 1, 2.5, fluent_decel + + animation = fadeLayersIn, 0 + animation = border, 0 + + + # Layers + animation = layers, 1, 1.5, easeinoutsine, popin + + # Workspaces + #animation = workspaces, 1, 3, fluent_decel, slidefade 30% # styles: slide, slidevert, fade, slidefade, slidefadevert + animation = workspaces, 1, 3, fluent_decel, slidefadevert 30% # styles: slide, slidevert, fade, slidefade, slidefadevert + + animation = specialWorkspace, 1, 2, fluent_decel, slidefade 10% +} diff --git a/config/hypr/animations/HYDE - default.conf b/config/hypr/animations/HYDE - default.conf new file mode 100644 index 00000000..96c439d6 --- /dev/null +++ b/config/hypr/animations/HYDE - default.conf @@ -0,0 +1,21 @@ +# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# +# name "Default" +# credit https://github.com/prasanthrangan/hyprdots + +animations { + enabled = yes + bezier = wind, 0.05, 0.9, 0.1, 1.05 + bezier = winIn, 0.1, 1.1, 0.1, 1.1 + bezier = winOut, 0.3, -0.3, 0, 1 + bezier = liner, 1, 1, 1, 1 + animation = windows, 1, 6, wind, slide + animation = windowsIn, 1, 6, winIn, slide + animation = windowsOut, 1, 5, winOut, slide + animation = windowsMove, 1, 5, wind, slide + animation = border, 1, 1, liner + animation = borderangle, 1, 30, liner, once + animation = fade, 1, 10, default + animation = workspaces, 1, 5, wind + animation = specialWorkspace, 1, 5, wind, slidevert +} diff --git a/config/hypr/animations/HYDE - minimal-1.conf b/config/hypr/animations/HYDE - minimal-1.conf new file mode 100644 index 00000000..6dbcf8ec --- /dev/null +++ b/config/hypr/animations/HYDE - minimal-1.conf @@ -0,0 +1,27 @@ +# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# +# # name "Minimal-1" +# credit https://github.com/prasanthrangan/hyprdots- + +animations { + enabled = true + + # █▄▄ █▀▀ ▀█ █ █▀▀ █▀█ █▀▀ █░█ █▀█ █░█ █▀▀ + # █▄█ ██▄ █▄ █ ██▄ █▀▄ █▄▄ █▄█ █▀▄ ▀▄▀ ██▄ + bezier = wind, 0.05, 0.9, 0.1, 1.05 + bezier = winIn, 0.1, 1.1, 0.1, 1.1 + bezier = winOut, 0.3, -0.3, 0, 1 + bezier = liner, 1, 1, 1, 1 + + + #▄▀█ █▄░█ █ █▀▄▀█ ▄▀█ ▀█▀ █ █▀█ █▄░█ + #█▀█ █░▀█ █ █░▀░█ █▀█ ░█░ █ █▄█ █░▀█ + animation = windows, 1, 6, wind, slide + animation = windowsIn, 1, 6, winIn, slide + animation = windowsOut, 1, 5, winOut, slide + animation = windowsMove, 1, 5, wind, slide + animation = border, 1, 1, liner + animation = borderangle, 1, 30, liner, once + animation = fade, 1, 10, default + animation = workspaces, 1, 5, wind +} diff --git a/config/hypr/animations/HYDE - minimal-2.conf b/config/hypr/animations/HYDE - minimal-2.conf new file mode 100644 index 00000000..6ac56bc5 --- /dev/null +++ b/config/hypr/animations/HYDE - minimal-2.conf @@ -0,0 +1,16 @@ +# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# +# # name "Minimal-2" +# credit https://github.com/prasanthrangan/hyprdots + +animations { + enabled = yes + + bezier = quart, 0.25, 1, 0.5, 1 + + animation = windows, 1, 6, quart, slide + animation = border, 1, 6, quart + animation = borderangle, 1, 6, quart + animation = fade, 1, 6, quart + animation = workspaces, 1, 6, quart +}
\ No newline at end of file diff --git a/config/hypr/animations/HYDE - optimized.conf b/config/hypr/animations/HYDE - optimized.conf new file mode 100644 index 00000000..7534c69d --- /dev/null +++ b/config/hypr/animations/HYDE - optimized.conf @@ -0,0 +1,41 @@ +# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# +# name "Optimized" +# credit https://github.com/prasanthrangan/hyprdots + +animations { + enabled = true + bezier = wind, 0.05, 0.85, 0.03, 0.97 + bezier = winIn, 0.07, 0.88, 0.04, 0.99 + bezier = winOut, 0.20, -0.15, 0, 1 + bezier = liner, 1, 1, 1, 1 + bezier = md3_standard, 0.12, 0, 0, 1 + bezier = md3_decel, 0.05, 0.80, 0.10, 0.97 + bezier = md3_accel, 0.20, 0, 0.80, 0.08 + bezier = overshot, 0.05, 0.85, 0.07, 1.04 + bezier = crazyshot, 0.1, 1.22, 0.68, 0.98 + bezier = hyprnostretch, 0.05, 0.82, 0.03, 0.94 + bezier = menu_decel, 0.05, 0.82, 0, 1 + bezier = menu_accel, 0.20, 0, 0.82, 0.10 + bezier = easeInOutCirc, 0.75, 0, 0.15, 1 + bezier = easeOutCirc, 0, 0.48, 0.38, 1 + bezier = easeOutExpo, 0.10, 0.94, 0.23, 0.98 + bezier = softAcDecel, 0.20, 0.20, 0.15, 1 + bezier = md2, 0.30, 0, 0.15, 1 + + bezier = OutBack, 0.28, 1.40, 0.58, 1 + bezier = easeInOutCirc, 0.78, 0, 0.15, 1 + + animation = border, 1, 1.6, liner + animation = borderangle, 1, 82, liner, once + animation = windowsIn, 1, 3.2, winIn, slide + animation = windowsOut, 1, 2.8, easeOutCirc + animation = windowsMove, 1, 3.0, wind, slide + animation = fade, 1, 1.8, md3_decel + animation = layersIn, 1, 1.8, menu_decel, slide + animation = layersOut, 1, 1.5, menu_accel + animation = fadeLayersIn, 1, 1.6, menu_decel + animation = fadeLayersOut, 1, 1.8, menu_accel + animation = workspaces, 1, 4.0, menu_decel, slide + animation = specialWorkspace, 1, 2.3, md3_decel, slidefadevert 15% +} diff --git a/config/hypr/animations/ITZ - diablo-1.conf b/config/hypr/animations/ITZ - diablo-1.conf new file mode 100644 index 00000000..81d3aa41 --- /dev/null +++ b/config/hypr/animations/ITZ - diablo-1.conf @@ -0,0 +1,32 @@ +# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# +# name "Diablo-1" +# credit https://github.com/Itz-Abhishek-Tiwari + +animations { + enabled = 1 + bezier = default, 0.05, 0.9, 0.1, 1.05 + bezier = wind, 0.05, 0.9, 0.1, 1.05 + bezier = overshot, 0.13, 0.99, 0.29, 1.08 + bezier = liner, 1, 1, 1, 1 + bezier = bounce, 0.4, 0.9, 0.6, 1.0 + bezier = snappyReturn, 0.4, 0.9, 0.6, 1.0 + + bezier = slideInFromRight, 0.5, 0.0, 0.5, 1.0 + animation = windows, 1, 5, snappyReturn, slidevert + animation = windowsIn, 1, 5, snappyReturn, slidevert right + + animation = windowsOut, 1, 5, snappyReturn, slide + animation = windowsMove, 1, 6, bounce, slide + animation = layersOut, 1, 5, bounce, slidevert right + animation = fadeIn, 1, 10, default + animation = fadeOut, 1, 10, default + animation = fadeSwitch, 1, 10, default + animation = fadeShadow, 1, 10, default + animation = fadeDim, 1, 10, default + animation = fadeLayers, 1, 10, default + animation = workspaces, 1, 7, overshot, slidevert + animation = border, 1, 1, liner + animation = layers, 1, 4, bounce, slidevert right + animation = borderangle, 1, 30, liner, once +} diff --git a/config/hypr/animations/ITZ - diablo-2.conf b/config/hypr/animations/ITZ - diablo-2.conf new file mode 100644 index 00000000..4d4b36f7 --- /dev/null +++ b/config/hypr/animations/ITZ - diablo-2.conf @@ -0,0 +1,26 @@ +# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# +# name "Diablo-2" +# credit https://github.com/Itz-Abhishek-Tiwari + +animations { + enabled = 1 + bezier = default, 0.05, 0.9, 0.1, 1.05 + bezier = wind, 0.05, 0.9, 0.1, 1.05 + bezier = overshot, 0.13, 0.99, 0.29, 1.08 + bezier = liner, 1, 1, 1, 1 + animation = windows, 1, 7, wind, popin + animation = windowsIn, 1, 7, overshot, popin + animation = windowsOut, 1, 5, overshot, popin + animation = windowsMove, 1, 6, overshot, slide + animation = layers, 1, 5, default, popin + animation = fadeIn, 1, 10, default + animation = fadeOut, 1, 10, default + animation = fadeSwitch, 1, 10, default + animation = fadeShadow, 1, 10, default + animation = fadeDim, 1, 10, default + animation = fadeLayers, 1, 10, default + animation = workspaces, 1, 7, overshot, slidevert + animation = border, 1, 1, liner + animation = borderangle, 1, 30, liner, once +} diff --git a/config/hypr/animations/ML4W - classic.conf b/config/hypr/animations/ML4W - classic.conf new file mode 100644 index 00000000..af8c5e15 --- /dev/null +++ b/config/hypr/animations/ML4W - classic.conf @@ -0,0 +1,15 @@ +# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# +# name "Classic" +# credit https://github.com/mylinuxforwork/dotfiles + +animations { + enabled = true + bezier = myBezier, 0.05, 0.9, 0.1, 1.05 + animation = windows, 1, 7, myBezier + animation = windowsOut, 1, 7, default, popin 80% + animation = border, 1, 10, default + animation = borderangle, 1, 8, default + animation = fade, 1, 7, default + animation = workspaces, 1, 6, default +} diff --git a/config/hypr/animations/ML4W - dynamic.conf b/config/hypr/animations/ML4W - dynamic.conf new file mode 100644 index 00000000..c5f1da0d --- /dev/null +++ b/config/hypr/animations/ML4W - dynamic.conf @@ -0,0 +1,20 @@ +# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# +# name "Dynamic" +# credit https://github.com/mylinuxforwork/dotfiles + +animations { + enabled = true + bezier = wind, 0.05, 0.9, 0.1, 1.05 + bezier = winIn, 0.1, 1.1, 0.1, 1.1 + bezier = winOut, 0.3, -0.3, 0, 1 + bezier = liner, 1, 1, 1, 1 + animation = windows, 1, 6, wind, slide + animation = windowsIn, 1, 6, winIn, slide + animation = windowsOut, 1, 5, winOut, slide + animation = windowsMove, 1, 5, wind, slide + animation = border, 1, 1, liner + animation = borderangle, 1, 30, liner, loop + animation = fade, 1, 10, default + animation = workspaces, 1, 5, wind +} diff --git a/config/hypr/animations/ML4W - fast.conf b/config/hypr/animations/ML4W - fast.conf new file mode 100644 index 00000000..9623c418 --- /dev/null +++ b/config/hypr/animations/ML4W - fast.conf @@ -0,0 +1,24 @@ +# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# +# name "Fast" +# credit https://github.com/mylinuxforwork/dotfiles + +animations { + enabled = true + bezier = linear, 0, 0, 1, 1 + bezier = md3_standard, 0.2, 0, 0, 1 + bezier = md3_decel, 0.05, 0.7, 0.1, 1 + bezier = md3_accel, 0.3, 0, 0.8, 0.15 + bezier = overshot, 0.05, 0.9, 0.1, 1.1 + bezier = crazyshot, 0.1, 1.5, 0.76, 0.92 + bezier = hyprnostretch, 0.05, 0.9, 0.1, 1.0 + bezier = fluent_decel, 0.1, 1, 0, 1 + bezier = easeInOutCirc, 0.85, 0, 0.15, 1 + bezier = easeOutCirc, 0, 0.55, 0.45, 1 + bezier = easeOutExpo, 0.16, 1, 0.3, 1 + animation = windows, 1, 3, md3_decel, popin 60% + animation = border, 1, 10, default + animation = fade, 1, 2.5, md3_decel + animation = workspaces, 1, 3.5, easeOutExpo, slide + animation = specialWorkspace, 1, 3, md3_decel, slidevert +}
\ No newline at end of file diff --git a/config/hypr/animations/ML4W - high.conf b/config/hypr/animations/ML4W - high.conf new file mode 100644 index 00000000..e881d8be --- /dev/null +++ b/config/hypr/animations/ML4W - high.conf @@ -0,0 +1,20 @@ +# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# +# name "High" +# credit https://github.com/mylinuxforwork/dotfiles + +animations { + enabled = true + bezier = wind, 0.05, 0.9, 0.1, 1.05 + bezier = winIn, 0.1, 1.1, 0.1, 1.1 + bezier = winOut, 0.3, -0.3, 0, 1 + bezier = liner, 1, 1, 1, 1 + animation = windows, 1, 6, wind, slide + animation = windowsIn, 1, 6, winIn, slide + animation = windowsOut, 1, 5, winOut, slide + animation = windowsMove, 1, 5, wind, slide + animation = border, 1, 1, liner + animation = borderangle, 1, 30, liner, once + animation = fade, 1, 10, default + animation = workspaces, 1, 5, wind +} diff --git a/config/hypr/animations/ML4W - moving.conf b/config/hypr/animations/ML4W - moving.conf new file mode 100644 index 00000000..974a8f60 --- /dev/null +++ b/config/hypr/animations/ML4W - moving.conf @@ -0,0 +1,20 @@ +# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# +# name "Moving" +# credit https://github.com/mylinuxforwork/dotfiles + + +animations { + enabled = true + bezier = overshot, 0.05, 0.9, 0.1, 1.05 + bezier = smoothOut, 0.5, 0, 0.99, 0.99 + bezier = smoothIn, 0.5, -0.5, 0.68, 1.5 + animation = windows, 1, 5, overshot, slide + animation = windowsOut, 1, 3, smoothOut + animation = windowsIn, 1, 3, smoothOut + animation = windowsMove, 1, 4, smoothIn, slide + animation = border, 1, 5, default + animation = fade, 1, 5, smoothIn + animation = fadeDim, 1, 5, smoothIn + animation = workspaces, 1, 6, default +} diff --git a/config/hypr/animations/ML4W - standard.conf b/config/hypr/animations/ML4W - standard.conf new file mode 100644 index 00000000..aa312bb1 --- /dev/null +++ b/config/hypr/animations/ML4W - standard.conf @@ -0,0 +1,15 @@ +# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# +# name "Standard" +# credit https://github.com/mylinuxforwork/dotfiles + +animations { + enabled = true + bezier = myBezier, 0.05, 0.9, 0.1, 1.05 + animation = windows, 1, 7, myBezier + animation = windowsOut, 1, 7, default, popin 80% + animation = border, 1, 10, default + animation = borderangle, 1, 8, default + animation = fade, 1, 7, default + animation = workspaces, 1, 6, default +} diff --git a/config/hypr/animations/Mahaveer - me-1.conf b/config/hypr/animations/Mahaveer - me-1.conf new file mode 100644 index 00000000..7c93f3ef --- /dev/null +++ b/config/hypr/animations/Mahaveer - me-1.conf @@ -0,0 +1,55 @@ +# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# +# name "Me-1" +# credit https://github.com/mahaveergurjar + +animations { + enabled = true + # Animation curves + bezier = wind, 0.05, 0.9, 0.1, 1.05 + bezier = winIn, 0.1, 1.1, 0.1, 1.1 + bezier = winOut, 0.3, -0.3, 0, 1 + bezier = liner, 1, 1, 1, 1 + # bezier = linear, 0, 0, 1, 1 + bezier = md3_standard, 0.2, 0, 0, 1 + bezier = md3_decel, 0.05, 0.7, 0.1, 1 + bezier = md3_accel, 0.3, 0, 0.8, 0.15 + bezier = overshot, 0.05, 0.9, 0.1, 1.1 + bezier = crazyshot, 0.1, 1.5, 0.76, 0.92 + bezier = hyprnostretch, 0.05, 0.9, 0.1, 1.0 + bezier = menu_decel, 0.1, 1, 0, 1 + bezier = menu_accel, 0.38, 0.04, 1, 0.07 + bezier = easeInOutCirc, 0.85, 0, 0.15, 1 + bezier = easeOutCirc, 0, 0.55, 0.45, 1 + bezier = easeOutExpo, 0.16, 1, 0.3, 1 + bezier = softAcDecel, 0.26, 0.26, 0.15, 1 + bezier = md2, 0.4, 0, 0.2, 1 # use with .2s duration + + # Animation configs + # animation = windows, 1, 3, md3_decel, popin 60% + # animation = windowsIn, 1, 3, md3_decel, popin 60% + # animation = windowsOut, 1, 3, md3_accel, popin 60% + # animation = windows, 1, 6, wind, slide + animation = border, 1, 1, liner + animation = borderangle, 1, 30, liner, once + animation = windows, 1, 6, wind, slide + animation = windowsIn, 1, 6, winIn, slide + animation = windowsOut, 1, 5, winOut, slide + animation = windowsMove, 1, 5, wind, slide + + # animation = border, 1, 10, default + animation = fade, 1, 3, md3_decel + # animation = layers, 1, 2, md3_decel, slide + animation = layersIn, 1, 3, menu_decel, slide + animation = layersOut, 1, 1.6, menu_accel + animation = fadeLayersIn, 1, 2, menu_decel + animation = fadeLayersOut, 1, 4.5, menu_accel + animation = workspaces, 1, 7, menu_decel, slide + animation = workspaces, 1, 5, wind + # animation = workspaces, 1, 2.5, softAcDecel, slide + # animation = workspaces, 1, 7, menu_decel, slidefade 15% + animation = specialWorkspace, 1, 3, md3_decel, slidefadevert 15% + animation = specialWorkspace, 1, 3, md3_decel, slidevert +} + + diff --git a/config/hypr/animations/Mahaveer - me-2.conf b/config/hypr/animations/Mahaveer - me-2.conf new file mode 100644 index 00000000..4cc2bfa0 --- /dev/null +++ b/config/hypr/animations/Mahaveer - me-2.conf @@ -0,0 +1,30 @@ +# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# +# name "Me-2" +# credit https://github.com/mahaveergurjar + + +animations { + enabled = yes + + bezier = wind, 0.05, 0.9, 0.1, 1.05 + bezier = winIn, 0.1, 1.1, 0.1, 1.1 + bezier = winOut, 0.3, -0.3, 0, 1 + bezier = liner, 1, 1, 1, 1 + bezier = overshot, 0.05, 0.9, 0.1, 1.05 + bezier = smoothOut, 0.5, 0, 0.99, 0.99 + bezier = smoothIn, 0.5, -0.5, 0.68, 1.5 + + animation = windows, 1, 6, wind, slide + animation = windowsIn, 1, 5, winIn, slide + animation = windowsOut, 1, 3, smoothOut, slide + animation = windowsMove, 1, 5, wind, slide + animation = border, 1, 1, liner + animation = borderangle, 1, 180, liner, loop #used by rainbow borders and rotating colors + animation = fade, 1, 3, smoothOut + animation = workspaces, 1, 5, overshot + + # animations for -git or version >0.42.0 + animation = workspacesIn, 1, 5, winIn, slide + animation = workspacesOut, 1, 5, winOut, slide +}
\ No newline at end of file diff --git a/config/hypr/animations/default.conf b/config/hypr/animations/default.conf new file mode 100644 index 00000000..0f40b5e6 --- /dev/null +++ b/config/hypr/animations/default.conf @@ -0,0 +1,26 @@ +# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # + +animations { + enabled = yes + + bezier = wind, 0.05, 0.9, 0.1, 1.05 + bezier = winIn, 0.1, 1.1, 0.1, 1.1 + bezier = winOut, 0.3, -0.3, 0, 1 + bezier = liner, 1, 1, 1, 1 + bezier = overshot, 0.05, 0.9, 0.1, 1.05 + bezier = smoothOut, 0.5, 0, 0.99, 0.99 + bezier = smoothIn, 0.5, -0.5, 0.68, 1.5 + + animation = windows, 1, 6, wind, slide + animation = windowsIn, 1, 5, winIn, slide + animation = windowsOut, 1, 3, smoothOut, slide + animation = windowsMove, 1, 5, wind, slide + animation = border, 1, 1, liner + animation = borderangle, 1, 180, liner, loop #used by rainbow borders and rotating colors + animation = fade, 1, 3, smoothOut + animation = workspaces, 1, 5, overshot + + # animations for -git or version >0.42.0 + animation = workspacesIn, 1, 5, winIn, slide + animation = workspacesOut, 1, 5, winOut, slide +}
\ No newline at end of file diff --git a/config/hypr/animations/disabled.conf b/config/hypr/animations/disabled.conf new file mode 100644 index 00000000..f73a485b --- /dev/null +++ b/config/hypr/animations/disabled.conf @@ -0,0 +1,5 @@ +# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # + +animations { + enabled = no +}
\ No newline at end of file diff --git a/config/hypr/configs/Keybinds.conf b/config/hypr/configs/Keybinds.conf index 019ca11d..feb21707 100644 --- a/config/hypr/configs/Keybinds.conf +++ b/config/hypr/configs/Keybinds.conf @@ -38,6 +38,7 @@ bind = $mainMod SHIFT, W, exec, $UserScripts/WallpaperEffects.sh # Wallpaper Eff bind = CTRL ALT, W, exec, $UserScripts/WallpaperRandom.sh # Random wallpapers bind = $mainMod ALT, O, exec, hyprctl setprop active opaque toggle # disable opacity on active window bind = $mainMod SHIFT, K, exec, $scriptsDir/KeyBinds.sh # search keybinds via rofi +bind = $mainMod SHIFT, A, exec, $UserScripts/Animations.sh #hyprland animations menu # Waybar / Bar related bind = $mainMod, B, exec, pkill -SIGUSR1 waybar # Toggle hide/show waybar diff --git a/config/hypr/hyprland.conf b/config/hypr/hyprland.conf index 57ab705d..7f9ebab9 100644 --- a/config/hypr/hyprland.conf +++ b/config/hypr/hyprland.conf @@ -16,7 +16,8 @@ source= $UserConfigs/Monitors.conf source= $UserConfigs/Laptops.conf source= $UserConfigs/LaptopDisplay.conf source= $UserConfigs/WindowRules.conf -source= $UserConfigs/UserDecorAnimations.conf +source= $UserConfigs/UserDecorations.conf +source= $UserConfigs/UserAnimations.conf source= $UserConfigs/UserKeybinds.conf source= $UserConfigs/UserSettings.conf -source= $UserConfigs/WorkspaceRules.conf
\ No newline at end of file +source= $UserConfigs/WorkspaceRules.conf diff --git a/config/hypr/initial-boot.sh b/config/hypr/initial-boot.sh index 4cde9a47..4d2d6aaa 100755 --- a/config/hypr/initial-boot.sh +++ b/config/hypr/initial-boot.sh @@ -10,7 +10,7 @@ # Variables scriptsDir=$HOME/.config/hypr/scripts wallpaper=$HOME/.config/hypr/wallpaper_effects/.wallpaper_modified -waybar_style="$HOME/.config/waybar/style/[Wallust] Chroma Tally.css" +waybar_style="$HOME/.config/waybar/style/[Extra] Modern-Combined - Transparent.css" kvantum_theme="catppuccin-mocha-blue" color_scheme="prefer-dark" gtk_theme="Flat-Remix-GTK-Blue-Dark" diff --git a/config/hypr/scripts/KeyHints.sh b/config/hypr/scripts/KeyHints.sh index 6033cea4..b7ed26e2 100755 --- a/config/hypr/scripts/KeyHints.sh +++ b/config/hypr/scripts/KeyHints.sh @@ -24,8 +24,8 @@ max_width=1200 max_height=1000 # Set percentage of screen size for dynamic adjustment -percentage_width=70 -percentage_height=70 +percentage_width=90 +percentage_height=90 # Calculate dynamic width and height dynamic_width=$((width * percentage_width / 100)) @@ -80,6 +80,7 @@ GDK_BACKEND=$BACKEND yad --width=$dynamic_width --height=$dynamic_height \ " Shift F" "Toggle float" "single window" \ " ALT F" "Toggle all windows to float" "all windows" \ " Shift B" "Toggle Blur" "normal or less blur" \ +" Shift A" "Animations Menu" "Choose Animations via rofi" \ " SHIFT G" "Gamemode! All animations OFF or ON" "toggle" \ " ALT E" "Rofi Emoticons" "Emoticon" \ " ALT V" "Clipboard Manager" "cliphist" \ diff --git a/config/rofi/config-rofi-Animations.rasi b/config/rofi/config-rofi-Animations.rasi new file mode 100644 index 00000000..d13f7d83 --- /dev/null +++ b/config/rofi/config-rofi-Animations.rasi @@ -0,0 +1,20 @@ +/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* Rofi Beats Config (compact) */ + +@import "~/.config/rofi/config-compact.rasi" + +/* ---- Window ---- */ +window { + width: 35%; +} + +/* ---- Entry ---- */ +entry { + width: 25%; + placeholder: "✨ Choose which Animations to load"; +} + +/* ---- Listview ---- */ +listview { + lines: 8; +} diff --git a/config/waybar/Modules b/config/waybar/Modules index af527737..8055736d 100644 --- a/config/waybar/Modules +++ b/config/waybar/Modules @@ -189,7 +189,7 @@ "hyprland/window": { "format": "{}", - "max-length": 20, + "max-length": 25, "separate-outputs": true, "offscreen-css": true, "offscreen-css-text": "(inactive)", diff --git a/config/waybar/ModulesCustom b/config/waybar/ModulesCustom index fa989061..f0f52f70 100644 --- a/config/waybar/ModulesCustom +++ b/config/waybar/ModulesCustom @@ -114,8 +114,8 @@ "custom/playerctl": { "format": "<span>{}</span>", "return-type": "json", - "max-length": 35, - "exec": "playerctl -a metadata --format '{\"text\": \"{{artist}} $HOME {{markup_escape(title)}}\", \"tooltip\": \"{{playerName}} : {{markup_escape(title)}}\", \"alt\": \"{{status}}\", \"class\": \"{{status}}\"}' -F", + "max-length": 25, + "exec": "playerctl -a metadata --format '{\"text\": \"{{artist}} {{markup_escape(title)}}\", \"tooltip\": \"{{playerName}} : {{markup_escape(title)}}\", \"alt\": \"{{status}}\", \"class\": \"{{status}}\"}' -F", "on-click-middle": "playerctl play-pause", "on-click": "playerctl previous", "on-click-right": "playerctl next", @@ -124,7 +124,7 @@ "on-scroll-down": "$HOME/.config/hypr/scripts/Volume.sh --dec", "smooth-scrolling-threshold": 1, }, - + "custom/power": { "format": "⏻ ", "on-click": "$HOME/.config/hypr/scripts/Wlogout.sh", diff --git a/config/waybar/ModulesWorkspaces b/config/waybar/ModulesWorkspaces index 4c25cfd1..8219d295 100644 --- a/config/waybar/ModulesWorkspaces +++ b/config/waybar/ModulesWorkspaces @@ -140,6 +140,31 @@ "default": "", }, }, +// numbers styles +"hyprland/workspaces#numbers": { + "active-only": false, + "all-outputs": true, + "format": "{icon}", + "show-special": false, + "on-click": "activate", + "on-scroll-up": "hyprctl dispatch workspace e+1", + "on-scroll-down": "hyprctl dispatch workspace e-1", + "persistent-workspaces": { + "*": 10 + }, + "format-icons": { + "1": "1", + "2": "2", + "3": "3", + "4": "4", + "5": "5", + "6": "6", + "7": "7", + "8": "8", + "9": "9", + "10": "10", + }, +}, // NUMBERS and ICONS style with window rewrite "hyprland/workspaces#rw": { "disable-scroll": true, diff --git a/config/waybar/configs/[TOP] Default Laptop_v5 b/config/waybar/configs/[TOP] Default Laptop_v5 index c972b1b4..9e9febc1 100644 --- a/config/waybar/configs/[TOP] Default Laptop_v5 +++ b/config/waybar/configs/[TOP] Default Laptop_v5 @@ -21,35 +21,38 @@ "margin-right": 8, "modules-left": [ - "group/app_drawer", - "custom/separator#dot-line", - "group/mobo_drawer", - "custom/separator#blank", - "group/laptop", - "custom/separator#line", - "custom/weather", "custom/separator#blank", "custom/cava_mviz", + "custom/separator#blank", + "custom/playerctl", + "custom/separator#blank_2", + "hyprland/window", ], "modules-center": [ + "group/app_drawer", + "custom/separator#blank", "custom/swaync", "custom/separator#dot-line", - "hyprland/workspaces#rw", + "hyprland/workspaces#numbers", + "clock", + "custom/separator#dot-line", + "custom/weather", "custom/separator#dot-line", "idle_inhibitor", "custom/hint", ], "modules-right": [ - "network#speed", - "group/connections", - "custom/separator#line", "tray", - "mpris", - "clock", - "group/audio", + "network#speed", "custom/separator#dot-line", + "group/laptop", + "custom/separator#dot-line", + "group/mobo_drawer", + "custom/separator#line", + "group/audio", + "custom/separator#dot-line", "group/status", ], }
\ No newline at end of file diff --git a/config/waybar/configs/[TOP] Default_v5 b/config/waybar/configs/[TOP] Default_v5 index 3566068c..4c6a5aba 100644 --- a/config/waybar/configs/[TOP] Default_v5 +++ b/config/waybar/configs/[TOP] Default_v5 @@ -21,33 +21,36 @@ "margin-right": 8, "modules-left": [ - "group/app_drawer", - "custom/separator#dot-line", - "group/mobo_drawer", - "custom/separator#line", - "custom/weather", "custom/separator#blank", "custom/cava_mviz", + "custom/separator#blank", + "custom/playerctl", + "custom/separator#blank_2", + "hyprland/window", ], "modules-center": [ + "group/app_drawer", + "custom/separator#blank", "custom/swaync", "custom/separator#dot-line", - "hyprland/workspaces#rw", + "hyprland/workspaces#numbers", + "clock", + "custom/separator#dot-line", + "custom/weather", "custom/separator#dot-line", "idle_inhibitor", "custom/hint", - ], + ], "modules-right": [ - "network#speed", - "group/connections", - "custom/separator#line", "tray", - "mpris", - "clock", - "group/audio", + "network#speed", "custom/separator#dot-line", + "group/mobo_drawer", + "custom/separator#line", + "group/audio", + "custom/separator#dot-line", "group/status", ], }
\ No newline at end of file diff --git a/config/waybar/style/[Black & White] Monochrome.css b/config/waybar/style/[Black & White] Monochrome.css index 9f586c79..d2ba6c71 100644 --- a/config/waybar/style/[Black & White] Monochrome.css +++ b/config/waybar/style/[Black & White] Monochrome.css @@ -138,6 +138,7 @@ tooltip label{ #custom-hint, #custom-hypridle, #custom-menu, +#custom-playerctl, #custom-power_vertical, #custom-power, #custom-settings, @@ -189,6 +190,7 @@ tooltip label{ animation-direction: alternate; } +#backlight-slider slider, #pulseaudio-slider slider { min-width: 0px; min-height: 0px; @@ -198,33 +200,15 @@ tooltip label{ box-shadow: none; } +#backlight-slider trough, #pulseaudio-slider trough { min-width: 80px; min-height: 5px; border-radius: 5px; } +#backlight-slider highlight, #pulseaudio-slider highlight { min-height: 10px; border-radius: 5px; -} - -#backlight-slider slider { - min-width: 0px; - min-height: 0px; - opacity: 0; - background-image: none; - border: none; - box-shadow: none; -} - -#backlight-slider trough { - min-width: 80px; - min-height: 10px; - border-radius: 5px; -} - -#backlight-slider highlight { - min-width: 10px; - border-radius: 5px; -} +}
\ No newline at end of file diff --git a/config/waybar/style/[Catppuccin] Frappe.css b/config/waybar/style/[Catppuccin] Frappe.css index de05849f..0c4662ef 100644 --- a/config/waybar/style/[Catppuccin] Frappe.css +++ b/config/waybar/style/[Catppuccin] Frappe.css @@ -15,6 +15,7 @@ window#waybar { transition-property: background-color; transition-duration: 0.5s; + padding: 4px; border-top: 1px solid @rosewater; border-bottom: 3px solid @sapphire; background: alpha(@crust, 0.4); @@ -29,10 +30,8 @@ window#waybar.hidden { #workspaces button { box-shadow: none; text-shadow: none; - padding: 0px; + padding: 4px; border-radius: 9px; - padding-left: 4px; - padding-right: 4px; animation: gradient_f 20s ease-in infinite; transition: all 0.5s cubic-bezier(.55,-0.68,.48,1.682); } @@ -103,6 +102,7 @@ window#waybar.hidden { #custom-hint, #custom-hypridle, #custom-menu, +#custom-playerctl, #custom-power_vertical, #custom-power, #custom-settings, @@ -248,11 +248,14 @@ window#waybar.hidden { #network { color: @teal; } + #network.disconnected, #network.disabled { background-color: @surface0; color: @text; } + +#backlight-slider slider, #pulseaudio-slider slider { min-width: 0px; min-height: 0px; @@ -262,33 +265,15 @@ window#waybar.hidden { box-shadow: none; } +#backlight-slider trough, #pulseaudio-slider trough { min-width: 80px; min-height: 5px; border-radius: 5px; } +#backlight-slider highlight, #pulseaudio-slider highlight { min-height: 10px; border-radius: 5px; -} - -#backlight-slider slider { - min-width: 0px; - min-height: 0px; - opacity: 0; - background-image: none; - border: none; - box-shadow: none; -} - -#backlight-slider trough { - min-width: 80px; - min-height: 10px; - border-radius: 5px; -} - -#backlight-slider highlight { - min-width: 10px; - border-radius: 5px; }
\ No newline at end of file diff --git a/config/waybar/style/[Catppuccin] Latte.css b/config/waybar/style/[Catppuccin] Latte.css index 6e3f3172..03858dd9 100644 --- a/config/waybar/style/[Catppuccin] Latte.css +++ b/config/waybar/style/[Catppuccin] Latte.css @@ -29,10 +29,8 @@ window#waybar.hidden { #workspaces button { box-shadow: none; text-shadow: none; - padding: 0px; + padding: 4px; border-radius: 9px; - padding-left: 4px; - padding-right: 4px; animation: gradient_f 20s ease-in infinite; transition: all 0.5s cubic-bezier(.55,-0.68,.48,1.682); } @@ -103,6 +101,7 @@ window#waybar.hidden { #custom-hint, #custom-hypridle, #custom-menu, +#custom-playerctl, #custom-power_vertical, #custom-power, #custom-settings, @@ -248,11 +247,14 @@ window#waybar.hidden { #network { color: @teal; } + #network.disconnected, #network.disabled { background-color: @surface0; color: @text; } + +#backlight-slider slider, #pulseaudio-slider slider { min-width: 0px; min-height: 0px; @@ -262,33 +264,15 @@ window#waybar.hidden { box-shadow: none; } +#backlight-slider trough, #pulseaudio-slider trough { min-width: 80px; min-height: 5px; border-radius: 5px; } +#backlight-slider highlight, #pulseaudio-slider highlight { min-height: 10px; border-radius: 5px; } - -#backlight-slider slider { - min-width: 0px; - min-height: 0px; - opacity: 0; - background-image: none; - border: none; - box-shadow: none; -} - -#backlight-slider trough { - min-width: 80px; - min-height: 10px; - border-radius: 5px; -} - -#backlight-slider highlight { - min-width: 10px; - border-radius: 5px; -} diff --git a/config/waybar/style/[Catppuccin] Mocha.css b/config/waybar/style/[Catppuccin] Mocha.css index 4c047f20..bbeb427d 100644 --- a/config/waybar/style/[Catppuccin] Mocha.css +++ b/config/waybar/style/[Catppuccin] Mocha.css @@ -83,15 +83,10 @@ window#waybar.empty #window { padding-right: 4px; padding-left: 4px; border-radius: 10px; - } .modules-left, .modules-right { border: 1px solid @blue; - padding-top: 2px; - padding-bottom: 2px; - padding-right: 4px; - padding-left: 4px; } #backlight, @@ -129,6 +124,7 @@ window#waybar.empty #window { #custom-hint, #custom-hypridle, #custom-menu, +#custom-playerctl, #custom-power_vertical, #custom-power, #custom-settings, @@ -275,6 +271,8 @@ window#waybar.empty #window { background-color: @surface0; color: @text; } + +#backlight-slider slider, #pulseaudio-slider slider { min-width: 0px; min-height: 0px; @@ -284,33 +282,15 @@ window#waybar.empty #window { box-shadow: none; } +#backlight-slider trough, #pulseaudio-slider trough { min-width: 80px; min-height: 5px; border-radius: 5px; } +#backlight-slider highlight, #pulseaudio-slider highlight { min-height: 10px; border-radius: 5px; -} - -#backlight-slider slider { - min-width: 0px; - min-height: 0px; - opacity: 0; - background-image: none; - border: none; - box-shadow: none; -} - -#backlight-slider trough { - min-width: 80px; - min-height: 10px; - border-radius: 5px; -} - -#backlight-slider highlight { - min-width: 10px; - border-radius: 5px; }
\ No newline at end of file diff --git a/config/waybar/style/[Colored] Chroma Glow.css b/config/waybar/style/[Colored] Chroma Glow.css index 9da333a7..199c6b93 100644 --- a/config/waybar/style/[Colored] Chroma Glow.css +++ b/config/waybar/style/[Colored] Chroma Glow.css @@ -125,6 +125,7 @@ tooltip label{ #custom-hint, #custom-hypridle, #custom-menu, +#custom-playerctl, #custom-power_vertical, #custom-power, #custom-settings, @@ -302,6 +303,8 @@ label:focus { #custom-separator { color: #606060; } + +#backlight-slider slider, #pulseaudio-slider slider { min-width: 0px; min-height: 0px; @@ -311,33 +314,15 @@ label:focus { box-shadow: none; } +#backlight-slider trough, #pulseaudio-slider trough { min-width: 80px; min-height: 5px; border-radius: 5px; } +#backlight-slider highlight, #pulseaudio-slider highlight { min-height: 10px; border-radius: 5px; } - -#backlight-slider slider { - min-width: 0px; - min-height: 0px; - opacity: 0; - background-image: none; - border: none; - box-shadow: none; -} - -#backlight-slider trough { - min-width: 80px; - min-height: 10px; - border-radius: 5px; -} - -#backlight-slider highlight { - min-width: 10px; - border-radius: 5px; -} diff --git a/config/waybar/style/[Colored] Translucent.css b/config/waybar/style/[Colored] Translucent.css index 4f4797f3..d2938706 100644 --- a/config/waybar/style/[Colored] Translucent.css +++ b/config/waybar/style/[Colored] Translucent.css @@ -36,13 +36,6 @@ window#waybar.hidden { opacity: 0.1; } -window#waybar.empty, -window#waybar.empty #window { - padding: 0px; - border: 0px; - background-color: transparent; -} - tooltip { background: #1e1e2e; opacity: 0.6; @@ -57,10 +50,8 @@ tooltip { color: #ffffff; box-shadow: none; text-shadow: none; - padding: 0px; + padding: 4px; border-radius: 9px; - padding-left: 4px; - padding-right: 4px; animation: gradient_f 20s ease-in infinite; transition: all 0.5s cubic-bezier(.55,-0.68,.48,1.682); } @@ -134,6 +125,7 @@ tooltip { #custom-hint, #custom-hypridle, #custom-menu, +#custom-playerctl, #custom-power_vertical, #custom-power, #custom-settings, @@ -326,6 +318,8 @@ label:focus { #custom-separator { color: #606060; } + +#backlight-slider slider, #pulseaudio-slider slider { min-width: 0px; min-height: 0px; @@ -335,33 +329,15 @@ label:focus { box-shadow: none; } +#backlight-slider trough, #pulseaudio-slider trough { min-width: 80px; min-height: 5px; border-radius: 5px; } +#backlight-slider highlight, #pulseaudio-slider highlight { min-height: 10px; border-radius: 5px; } - -#backlight-slider slider { - min-width: 0px; - min-height: 0px; - opacity: 0; - background-image: none; - border: none; - box-shadow: none; -} - -#backlight-slider trough { - min-width: 80px; - min-height: 10px; - border-radius: 5px; -} - -#backlight-slider highlight { - min-width: 10px; - border-radius: 5px; -} diff --git a/config/waybar/style/[Colorful] Aurora Blossom.css b/config/waybar/style/[Colorful] Aurora Blossom.css index 1b9ffff8..51025dd5 100644 --- a/config/waybar/style/[Colorful] Aurora Blossom.css +++ b/config/waybar/style/[Colorful] Aurora Blossom.css @@ -32,6 +32,8 @@ tooltip label{ } /*-----module groups----*/ +.modules-left, +.modules-center, .modules-right { background-image: linear-gradient(45deg, #7287fd 10%, #209fb5 54%, #8839ef 90%); color: black; @@ -41,24 +43,7 @@ tooltip label{ padding-right: 4px; padding-left: 4px; } -.modules-center { - background-image: linear-gradient(0deg, #7287fd 10%, #209fb5 54%, #8839ef 90%); - color: black; - border-radius: 6px; - padding-top: 2px; - padding-bottom: 2px; - padding-right: 4px; - padding-left: 4px; -} -.modules-left { - background-image: linear-gradient(225deg, #7287fd 10%, #209fb5 54%, #8839ef 90%); - color: black; - border-radius: 6px; - padding-top: 2px; - padding-bottom: 2px; - padding-right: 4px; - padding-left: 4px; -} + /*-----modules indv----*/ #workspaces button { color: black; @@ -127,6 +112,7 @@ tooltip label{ #custom-hint, #custom-hypridle, #custom-menu, +#custom-playerctl, #custom-power_vertical, #custom-power, #custom-settings, diff --git a/config/waybar/style/[Colorful] Aurora.css b/config/waybar/style/[Colorful] Aurora.css index 1c606aec..d560a3a4 100644 --- a/config/waybar/style/[Colorful] Aurora.css +++ b/config/waybar/style/[Colorful] Aurora.css @@ -28,24 +28,15 @@ tooltip label{ color: black; } /*-----module groups----*/ +.modules-left, +.modules-center, .modules-right { padding-top: 2px; padding-bottom: 2px; padding-right: 4px; padding-left: 4px; } -.modules-center { - padding-top: 2px; - padding-bottom: 2px; - padding-right: 4px; - padding-left: 4px; -} -.modules-left { - padding-top: 2px; - padding-bottom: 2px; - padding-right: 4px; - padding-left: 4px; -} + /*-----modules indv----*/ #taskbar button, #workspaces button { @@ -115,6 +106,7 @@ tooltip label{ #custom-hint, #custom-hypridle, #custom-menu, +#custom-playerctl, #custom-power_vertical, #custom-power, #custom-settings, @@ -188,6 +180,7 @@ tooltip label{ animation-direction: alternate; } +#backlight-slider slider, #pulseaudio-slider slider { min-width: 0px; min-height: 0px; @@ -197,6 +190,7 @@ tooltip label{ box-shadow: none; } +#backlight-slider trough, #pulseaudio-slider trough { background-color: #7f849c; min-width: 80px; @@ -204,28 +198,8 @@ tooltip label{ border-radius: 5px; } +#backlight-slider highlight, #pulseaudio-slider highlight { min-height: 10px; border-radius: 5px; -} - -#backlight-slider slider { - min-width: 0px; - min-height: 0px; - opacity: 0; - background-image: none; - border: none; - box-shadow: none; -} - -#backlight-slider trough { - background-color: #7f849c; - min-width: 80px; - min-height: 10px; - border-radius: 5px; -} - -#backlight-slider highlight { - min-width: 10px; - border-radius: 5px; -} +}
\ No newline at end of file diff --git a/config/waybar/style/[Colorful] Oglo Chicklets.css b/config/waybar/style/[Colorful] Oglo Chicklets.css index 6438ddf4..79cbd3ad 100644 --- a/config/waybar/style/[Colorful] Oglo Chicklets.css +++ b/config/waybar/style/[Colorful] Oglo Chicklets.css @@ -91,6 +91,7 @@ button.active { #custom-hint, #custom-hypridle, #custom-menu, +#custom-playerctl, #custom-power_vertical, #custom-power, #custom-settings, @@ -110,6 +111,8 @@ button.active { #custom-weather.snowyIcyNight, #custom-weather.sunnyDay{ color: #ffffff; + padding-top: 2px; + padding-bottom: 2px; border-radius: 5px; padding-left: 5px; padding-right: 5px; diff --git a/config/waybar/style/[Colorful] Rainbow Spectrum.css b/config/waybar/style/[Colorful] Rainbow Spectrum.css index d5fea008..34cc54ca 100644 --- a/config/waybar/style/[Colorful] Rainbow Spectrum.css +++ b/config/waybar/style/[Colorful] Rainbow Spectrum.css @@ -109,6 +109,7 @@ tooltip label{ #custom-hint, #custom-hypridle, #custom-menu, +#custom-playerctl, #custom-power_vertical, #custom-power, #custom-settings, @@ -292,6 +293,8 @@ tooltip label{ background-color: #313244; color: #cdd6f4; } + +#backlight-slider slider, #pulseaudio-slider slider { min-width: 0px; min-height: 0px; @@ -301,33 +304,15 @@ tooltip label{ box-shadow: none; } +#backlight-slider trough, #pulseaudio-slider trough { min-width: 80px; min-height: 5px; border-radius: 5px; } +#backlight-slider highlight, #pulseaudio-slider highlight { min-height: 10px; border-radius: 5px; } - -#backlight-slider slider { - min-width: 0px; - min-height: 0px; - opacity: 0; - background-image: none; - border: none; - box-shadow: none; -} - -#backlight-slider trough { - min-width: 80px; - min-height: 10px; - border-radius: 5px; -} - -#backlight-slider highlight { - min-width: 10px; - border-radius: 5px; -} diff --git a/config/waybar/style/[Dark] Golden Noir.css b/config/waybar/style/[Dark] Golden Noir.css index f64d3ba8..51cbc8cf 100644 --- a/config/waybar/style/[Dark] Golden Noir.css +++ b/config/waybar/style/[Dark] Golden Noir.css @@ -32,6 +32,7 @@ tooltip { } /*-----module groups----*/ +.modules-left, .modules-right { padding-top: 2px; padding-bottom: 2px; @@ -50,13 +51,6 @@ tooltip { padding-left: 4px; } -.modules-left { - padding-top: 2px; - padding-bottom: 2px; - padding-right: 4px; - padding-left: 4px; -} - #workspaces button { color: #6E6A86; box-shadow: none; @@ -134,6 +128,7 @@ tooltip { #custom-hint, #custom-hypridle, #custom-menu, +#custom-playerctl, #custom-power_vertical, #custom-power, #custom-settings, @@ -184,6 +179,7 @@ tooltip { animation-direction: alternate; } +#backlight-slider slider, #pulseaudio-slider slider { min-width: 0px; min-height: 0px; @@ -193,6 +189,7 @@ tooltip { box-shadow: none; } +#backlight-slider trough, #pulseaudio-slider trough { min-width: 80px; min-height: 5px; @@ -200,30 +197,9 @@ tooltip { background-color: #22252a; } +#backlight-slider highlight, #pulseaudio-slider highlight { min-height: 10px; border-radius: 5px; background-color: #ba5663; -} - -#backlight-slider slider { - min-width: 0px; - min-height: 0px; - opacity: 0; - background-image: none; - border: none; - box-shadow: none; -} - -#backlight-slider trough { - min-width: 80px; - min-height: 10px; - border-radius: 5px; - background-color: #22252a; -} - -#backlight-slider highlight { - min-width: 10px; - border-radius: 5px; - background-color: #ba5663; }
\ No newline at end of file diff --git a/config/waybar/style/[Dark] Half-Moon.css b/config/waybar/style/[Dark] Half-Moon.css index 0cd39907..6a51743c 100644 --- a/config/waybar/style/[Dark] Half-Moon.css +++ b/config/waybar/style/[Dark] Half-Moon.css @@ -147,6 +147,7 @@ color: #F3F4F5; padding: 2px 15px; } +#custom-playerctl, #power-profiles-daemon, #custom-cycle_wall, #cpu { @@ -293,6 +294,7 @@ color: #F3F4F5; animation-direction: alternate; } +#backlight-slider slider, #pulseaudio-slider slider { min-width: 0px; min-height: 0px; @@ -302,6 +304,7 @@ color: #F3F4F5; box-shadow: none; } +#backlight-slider trough, #pulseaudio-slider trough { min-width: 80px; min-height: 5px; @@ -309,30 +312,9 @@ color: #F3F4F5; background-color: #6E6A86; } +#backlight-slider highlight, #pulseaudio-slider highlight { min-height: 10px; border-radius: 5px; background-color: purple; -} - -#backlight-slider slider { - min-width: 0px; - min-height: 0px; - opacity: 0; - background-image: none; - border: none; - box-shadow: none; -} - -#backlight-slider trough { - min-width: 80px; - min-height: 10px; - border-radius: 5px; - background-color: #6E6A86; -} - -#backlight-slider highlight { - min-width: 10px; - border-radius: 5px; - background-color: purple; }
\ No newline at end of file diff --git a/config/waybar/style/[Dark] Latte-Wallust combined v2.css b/config/waybar/style/[Dark] Latte-Wallust combined v2.css index 0aef9615..ad6a4726 100644 --- a/config/waybar/style/[Dark] Latte-Wallust combined v2.css +++ b/config/waybar/style/[Dark] Latte-Wallust combined v2.css @@ -66,6 +66,7 @@ tooltip { transition: all 0.5s cubic-bezier(.55,-0.68,.48,1.682); } +#taskbar button.active, #workspaces button.active { color: #ffd700; border-radius: 50%; @@ -86,6 +87,7 @@ tooltip { border-radius: 10px; } +#taskbar button:hover, #workspaces button:hover { color: #ffd700; border-radius: 10px; @@ -95,14 +97,11 @@ tooltip { transition: all 0.3s cubic-bezier(.55,-0.68,.48,1.682); } -#clock#2 { - color: #efe8f7; -} - /*-----module groups----*/ .modules-center { background-color: @background-module2; border-radius: 10px; + padding: 4px; border-bottom: 2px solid @border-color; border-right: 1px solid @button-hover; border-left: 1px solid @button-hover; @@ -142,6 +141,7 @@ tooltip { #custom-hint, #custom-hypridle, #custom-menu, +#custom-playerctl, #custom-power_vertical, #custom-power, #custom-settings, @@ -175,21 +175,7 @@ tooltip { } } -#taskbar button.active { - background-color: rgb(47, 46, 46); - padding-left: 12px; - padding-right: 12px; - animation: gradient_f 20s ease-in infinite; - transition: all 0.3s cubic-bezier(.55,-0.68,.48,1.682); -} - -#taskbar button:hover { - padding-left: 3px; - padding-right: 3px; - animation: gradient_f 20s ease-in infinite; - transition: all 0.3s cubic-bezier(.55,-0.68,.48,1.682); -} - +#backlight-slider slider, #pulseaudio-slider slider { min-width: 0px; min-height: 0px; @@ -199,6 +185,7 @@ tooltip { box-shadow: none; } +#backlight-slider trough, #pulseaudio-slider trough { min-width: 80px; min-height: 5px; @@ -206,33 +193,13 @@ tooltip { background-color: #22252a; } +#backlight-slider highlight, #pulseaudio-slider highlight { min-height: 10px; border-radius: 5px; background-color: #ba5663; } -#backlight-slider slider { - min-width: 0px; - min-height: 0px; - opacity: 0; - background-image: none; - border: none; - box-shadow: none; -} - -#backlight-slider trough { - min-width: 80px; - min-height: 10px; - border-radius: 5px; - background-color: #22252a; -} - -#backlight-slider highlight { - min-width: 10px; - border-radius: 5px; - background-color: #ba5663; -} #pulseaudio-slider, #pulseaudio { color: @color13; @@ -271,45 +238,6 @@ tooltip { animation-direction: alternate; } -#pulseaudio-slider slider { - min-width: 0px; - min-height: 0px; - opacity: 0; - background-image: none; - border: none; - box-shadow: none; -} - -#pulseaudio-slider trough { - min-width: 80px; - min-height: 5px; - border-radius: 5px; -} - -#pulseaudio-slider highlight { - min-height: 10px; - border-radius: 5px; -} -#backlight-slider slider { - min-width: 0px; - min-height: 0px; - opacity: 0; - background-image: none; - border: none; - box-shadow: none; -} - -#backlight-slider trough { - min-width: 80px; - min-height: 10px; - border-radius: 5px; -} - -#backlight-slider highlight { - min-width: 10px; - border-radius: 5px; -} - #custom-hypridle, #custom-lock, #idle_inhibitor { @@ -323,9 +251,10 @@ tooltip { } #clock { - color: @sapphire; + color: @foreground; border-radius: 15px; } + #custom-updates { color: @yellow; } diff --git a/config/waybar/style/[Dark] Latte-Wallust combined.css b/config/waybar/style/[Dark] Latte-Wallust combined.css index a31f68cf..9e3380b2 100644 --- a/config/waybar/style/[Dark] Latte-Wallust combined.css +++ b/config/waybar/style/[Dark] Latte-Wallust combined.css @@ -39,13 +39,6 @@ window#waybar.hidden { opacity: 0; } -window#waybar.empty, -window#waybar.empty #window { - padding: 0px; - border: 0px; - background-color: transparent; -} - tooltip { background: #1e1e2e; border-radius: 12px; @@ -56,6 +49,8 @@ tooltip { } /*-----module groups----*/ +.modules-left, +.modules-center, .modules-right { background-color: @background-module; border-radius:15px; @@ -66,26 +61,6 @@ tooltip { padding-left: 4px; } -.modules-center { - background-color: @background-module; - border-radius:15px; - border-bottom:2px solid @border-color; - padding-top: 2px; - padding-bottom: 0px; - padding-right: 4px; - padding-left: 4px; -} - -.modules-left { - background-color: @background-module; - border-radius:15px; - border-bottom: 2px solid @border-color; - padding-top: 2px; - padding-bottom: 0px; - padding-right: 4px; - padding-left: 4px; -} - #workspaces { padding: 0px 1px; border-radius: 15px; @@ -106,6 +81,7 @@ tooltip { transition: all 0.5s cubic-bezier(.55,-0.68,.48,1.682); } +#taskbar button.active, #workspaces button.active { color: #ffd700; border-radius: 50%; @@ -126,6 +102,7 @@ tooltip { border-radius: 10px; } +#taskbar button:hover, #workspaces button:hover { color: #ffd700; border-radius: 10px; @@ -135,10 +112,6 @@ tooltip { transition: all 0.3s cubic-bezier(.55,-0.68,.48,1.682); } -#clock#2 { - color: #efe8f7; -} - #backlight, #backlight-slider, #battery, @@ -173,6 +146,7 @@ tooltip { #custom-hint, #custom-hypridle, #custom-menu, +#custom-playerctl, #custom-power_vertical, #custom-power, #custom-settings, @@ -206,21 +180,7 @@ tooltip { } } -#taskbar button.active { - background-color: rgb(47, 46, 46); - padding-left: 12px; - padding-right: 12px; - animation: gradient_f 20s ease-in infinite; - transition: all 0.3s cubic-bezier(.55,-0.68,.48,1.682); -} - -#taskbar button:hover { - padding-left: 3px; - padding-right: 3px; - animation: gradient_f 20s ease-in infinite; - transition: all 0.3s cubic-bezier(.55,-0.68,.48,1.682); -} - +#backlight-slider slider, #pulseaudio-slider slider { min-width: 0px; min-height: 0px; @@ -230,6 +190,7 @@ tooltip { box-shadow: none; } +#backlight-slider trough, #pulseaudio-slider trough { min-width: 80px; min-height: 5px; @@ -237,33 +198,13 @@ tooltip { background-color: #22252a; } +#backlight-slider highlight, #pulseaudio-slider highlight { min-height: 10px; border-radius: 5px; background-color: #ba5663; } -#backlight-slider slider { - min-width: 0px; - min-height: 0px; - opacity: 0; - background-image: none; - border: none; - box-shadow: none; -} - -#backlight-slider trough { - min-width: 80px; - min-height: 10px; - border-radius: 5px; - background-color: #22252a; -} - -#backlight-slider highlight { - min-width: 10px; - border-radius: 5px; - background-color: #ba5663; -} #pulseaudio-slider, #pulseaudio { color: @color13; @@ -302,45 +243,6 @@ tooltip { animation-direction: alternate; } -#pulseaudio-slider slider { - min-width: 0px; - min-height: 0px; - opacity: 0; - background-image: none; - border: none; - box-shadow: none; -} - -#pulseaudio-slider trough { - min-width: 80px; - min-height: 5px; - border-radius: 5px; -} - -#pulseaudio-slider highlight { - min-height: 10px; - border-radius: 5px; -} -#backlight-slider slider { - min-width: 0px; - min-height: 0px; - opacity: 0; - background-image: none; - border: none; - box-shadow: none; -} - -#backlight-slider trough { - min-width: 80px; - min-height: 10px; - border-radius: 5px; -} - -#backlight-slider highlight { - min-width: 10px; - border-radius: 5px; -} - #custom-hypridle, #custom-lock, #idle_inhibitor { @@ -353,6 +255,11 @@ tooltip { color: #39FF14; } + +#clock#2 { + color: #efe8f7; +} + #clock { color: @sapphire; border-radius: 15px; diff --git a/config/waybar/style/[Dark] Purpl.css b/config/waybar/style/[Dark] Purpl.css index a78a1977..a9897123 100644 --- a/config/waybar/style/[Dark] Purpl.css +++ b/config/waybar/style/[Dark] Purpl.css @@ -20,13 +20,6 @@ window#waybar.hidden { opacity: 0.5; } -window#waybar.empty, -window#waybar.empty #window { - padding: 0px; - border: 0px; - background-color: transparent; -} - tooltip { background: #1e1e2e; border-radius: 10px; @@ -43,8 +36,8 @@ tooltip { background-color: #3d174b; padding-top: 2px; padding-bottom: 2px; - padding-right: 4px; - padding-left: 4px; + padding-right: 5px; + padding-left: 5px; } .modules-center { @@ -61,10 +54,11 @@ tooltip { background-color: #441a53; padding-top: 2px; padding-bottom: 2px; - padding-right: 4px; - padding-left: 4px; + padding-right: 5px; + padding-left: 5px; } + #workspaces button { color: #6E6A86; box-shadow: none; @@ -79,7 +73,7 @@ tooltip { #workspaces button.active { color: #cba6f7; - border-radius: 50%; + border-radius: 20%; background-color: black; padding-left: 8px; padding-right: 8px; @@ -139,6 +133,7 @@ tooltip { #custom-hint, #custom-hypridle, #custom-menu, +#custom-playerctl, #custom-power_vertical, #custom-power, #custom-settings, @@ -204,6 +199,7 @@ tooltip { animation-direction: alternate; } +#backlight-slider slider, #pulseaudio-slider slider { min-width: 0px; min-height: 0px; @@ -213,6 +209,7 @@ tooltip { box-shadow: none; } +#backlight-slider trough, #pulseaudio-slider trough { min-width: 80px; min-height: 5px; @@ -220,30 +217,9 @@ tooltip { background-color: #6E6A86; } +#backlight-slider highlight, #pulseaudio-slider highlight { min-height: 10px; border-radius: 5px; background-color: purple; -} - -#backlight-slider slider { - min-width: 0px; - min-height: 0px; - opacity: 0; - background-image: none; - border: none; - box-shadow: none; -} - -#backlight-slider trough { - min-width: 80px; - min-height: 10px; - border-radius: 5px; - background-color: #6E6A86; -} - -#backlight-slider highlight { - min-width: 10px; - border-radius: 5px; - background-color: purple; }
\ No newline at end of file diff --git a/config/waybar/style/[Dark] Wallust Obsidian Edge.css b/config/waybar/style/[Dark] Wallust Obsidian Edge.css index 1e50cc63..1d260053 100644 --- a/config/waybar/style/[Dark] Wallust Obsidian Edge.css +++ b/config/waybar/style/[Dark] Wallust Obsidian Edge.css @@ -21,14 +21,6 @@ window#waybar.hidden { opacity: 0.5; } -window#waybar.empty, -window#waybar.empty #window { - padding: 0px; - border: 0px; - /* background-color: rgba(66,66,66,0.5); */ /* transparent */ - background-color: transparent; -} - tooltip { color: @foreground; background: rgba(0, 0, 0, 0.8); @@ -42,6 +34,8 @@ tooltip label { } /*-----module groups----*/ +.modules-left, +.modules-center, .modules-right { border: 0px solid #b4befe; border-radius: 10px; @@ -51,33 +45,13 @@ tooltip label { padding-left: 4px; } -.modules-center { - border: 0px solid #b4befe; - border-radius: 10px; - padding-top: 2px; - padding-bottom: 2px; - padding-right: 4px; - padding-left: 4px; -} - -.modules-left { - border: 0px solid #b4befe; - border-radius: 10px; - padding-top: 2px; - padding-bottom: 2px; - padding-right: 4px; - padding-left: 4px; -} - #taskbar button, #workspaces button { color: @color12; box-shadow: none; text-shadow: none; - padding: 0px; + padding: 4px; border-radius: 9px; - padding-left: 4px; - padding-right: 4px; animation: gradient_f 20s ease-in infinite; transition: all 0.5s cubic-bezier(.55,-0.68,.48,1.682); } @@ -145,6 +119,7 @@ tooltip label { #custom-hint, #custom-hypridle, #custom-menu, +#custom-playerctl, #custom-power_vertical, #custom-power, #custom-settings, @@ -195,6 +170,8 @@ tooltip label { animation-iteration-count: infinite; animation-direction: alternate; } + +#backlight-slider slider, #pulseaudio-slider slider { min-width: 0px; min-height: 0px; @@ -204,33 +181,15 @@ tooltip label { box-shadow: none; } +#backlight-slider trough, #pulseaudio-slider trough { min-width: 80px; min-height: 5px; border-radius: 5px; } +#backlight-slider highlight, #pulseaudio-slider highlight { min-height: 10px; border-radius: 5px; -} - -#backlight-slider slider { - min-width: 0px; - min-height: 0px; - opacity: 0; - background-image: none; - border: none; - box-shadow: none; -} - -#backlight-slider trough { - min-width: 80px; - min-height: 10px; - border-radius: 5px; -} - -#backlight-slider highlight { - min-width: 10px; - border-radius: 5px; }
\ No newline at end of file diff --git a/config/waybar/style/[Extra] Crimson.css b/config/waybar/style/[Extra] Crimson.css index 8ff87132..695a76c3 100644 --- a/config/waybar/style/[Extra] Crimson.css +++ b/config/waybar/style/[Extra] Crimson.css @@ -19,13 +19,7 @@ window#waybar { window#waybar.hidden { opacity: 0.5; -} -window#waybar.empty, -window#waybar.empty #window { - padding: 0px; - border: 0px; - background-color: transparent; -} +} tooltip { background: #240303; @@ -37,35 +31,21 @@ tooltip { } /*-----module groups----*/ +.modules-left, +.modules-center, .modules-right { padding-top: 2px; padding-bottom: 2px; padding-right: 4px; padding-left: 4px; } - -.modules-center { - padding-top: 2px; - padding-bottom: 2px; - padding-right: 4px; - padding-left: 4px; -} - -.modules-left { - padding-top: 2px; - padding-bottom: 2px; - padding-right: 4px; - padding-left: 4px; -} - + #workspaces button { color: wheat; box-shadow: none; text-shadow: none; - padding: 0px; + padding: 4px; border-radius: 9px; - padding-left: 4px; - padding-right: 4px; animation: gradient_f 20s ease-in infinite; transition: all 0.5s cubic-bezier(.55,-0.68,.48,1.682); } @@ -136,6 +116,7 @@ tooltip { #custom-hint, #custom-hypridle, #custom-menu, +#custom-playerctl, #custom-power_vertical, #custom-power, #custom-settings, @@ -186,48 +167,29 @@ tooltip { animation-direction: alternate; } +#backlight-slider slider, #pulseaudio-slider slider { - min-width: 0px; - min-height: 0px; - opacity: 0; - background-image: none; - border: none; - box-shadow: none; + min-width: 0px; + min-height: 0px; + opacity: 0; + background-image: none; + border: none; + box-shadow: none; } - + +#backlight-slider trough, #pulseaudio-slider trough { - min-width: 80px; - min-height: 5px; - border-radius: 5px; - background-color: #22252a; -} - -#pulseaudio-slider highlight { - min-height: 10px; - border-radius: 5px; - background-color: #ba5663; + min-width: 80px; + min-height: 5px; + border-radius: 5px; + background-color: #22252a; } -#backlight-slider slider { - min-width: 0px; - min-height: 0px; - opacity: 0; - background-image: none; - border: none; - box-shadow: none; -} - -#backlight-slider trough { - min-width: 80px; - min-height: 10px; - border-radius: 5px; - background-color: #22252a; -} - -#backlight-slider highlight { - min-width: 10px; - border-radius: 5px; - background-color: #ba5663; +#backlight-slider highlight, +#pulseaudio-slider highlight { + min-height: 10px; + border-radius: 5px; + background-color: #ba5663; }
\ No newline at end of file diff --git a/config/waybar/style/[Extra] EverForest.css b/config/waybar/style/[Extra] EverForest.css index 785acf01..d44c5316 100644 --- a/config/waybar/style/[Extra] EverForest.css +++ b/config/waybar/style/[Extra] EverForest.css @@ -60,11 +60,6 @@ window#waybar.hidden { background-color: @bg0; } -window#waybar.empty, -window#waybar.empty #window { - background: none; -} - .modules-left button:first-child { border-top-left-radius: 5px; border-bottom-left-radius: 5px; @@ -241,48 +236,29 @@ window#waybar.empty #window { background-color: @aqua; } +#backlight-slider slider, #pulseaudio-slider slider { - min-width: 0px; - min-height: 0px; - opacity: 0; - background-image: none; - border: none; - box-shadow: none; + min-width: 0px; + min-height: 0px; + opacity: 0; + background-image: none; + border: none; + box-shadow: none; } - + +#backlight-slider trough, #pulseaudio-slider trough { - min-width: 80px; - min-height: 5px; - border-radius: 5px; - background-color: #22252a; -} - -#pulseaudio-slider highlight { - min-height: 10px; - border-radius: 5px; - background-color: #ba5663; + min-width: 80px; + min-height: 5px; + border-radius: 5px; + background-color: #22252a; } -#backlight-slider slider { - min-width: 0px; - min-height: 0px; - opacity: 0; - background-image: none; - border: none; - box-shadow: none; -} - -#backlight-slider trough { - min-width: 80px; - min-height: 10px; - border-radius: 5px; - background-color: #22252a; -} - -#backlight-slider highlight { - min-width: 10px; - border-radius: 5px; - background-color: #ba5663; +#backlight-slider highlight, +#pulseaudio-slider highlight { + min-height: 10px; + border-radius: 5px; + background-color: #ba5663; } #backlight, @@ -319,6 +295,7 @@ window#waybar.empty #window { #custom-hint, #custom-hypridle, #custom-menu, +#custom-playerctl, #custom-power_vertical, #custom-power, #custom-settings, diff --git a/config/waybar/style/[Extra] Mauve.css b/config/waybar/style/[Extra] Mauve.css index 1e5b702d..413f90ed 100644 --- a/config/waybar/style/[Extra] Mauve.css +++ b/config/waybar/style/[Extra] Mauve.css @@ -20,13 +20,6 @@ window#waybar.hidden { opacity: 0.5; } -window#waybar.empty, -window#waybar.empty #window { - padding: 0px; - border: 0px; - background-color: transparent; -} - tooltip { background: #1e1e2e; border-radius: 10px; @@ -37,6 +30,7 @@ tooltip { } /*-----module groups----*/ +.modules-left, .modules-right { border: 3px solid #11111b; border-radius: 10px 10px 10px 10px; @@ -54,17 +48,6 @@ tooltip { padding-left: 4px; } -.modules-left { - /*background-color: #1e1e2e;*/ - border: 3px solid #11111b; - border-radius: 10px 10px 10px 10px; - background-color: #313244; - padding-top: 2px; - padding-bottom: 2px; - padding-right: 4px; - padding-left: 4px; -} - #workspaces button { color: #6E6A86; box-shadow: none; @@ -152,6 +135,7 @@ tooltip { #custom-hint, #custom-hypridle, #custom-menu, +#custom-playerctl, #custom-power_vertical, #custom-power, #custom-settings, @@ -203,6 +187,7 @@ tooltip { animation-direction: alternate; } +#backlight-slider slider, #pulseaudio-slider slider { min-width: 0px; min-height: 0px; @@ -212,6 +197,7 @@ tooltip { box-shadow: none; } +#backlight-slider trough, #pulseaudio-slider trough { min-width: 80px; min-height: 5px; @@ -219,30 +205,9 @@ tooltip { background-color: #6E6A86; } +#backlight-slider highlight, #pulseaudio-slider highlight { min-height: 10px; border-radius: 5px; background-color: purple; } - -#backlight-slider slider { - min-width: 0px; - min-height: 0px; - opacity: 0; - background-image: none; - border: none; - box-shadow: none; -} - -#backlight-slider trough { - min-width: 80px; - min-height: 10px; - border-radius: 5px; - background-color: #6E6A86; -} - -#backlight-slider highlight { - min-width: 10px; - border-radius: 5px; - background-color: purple; -} diff --git a/config/waybar/style/[Extra] Modern-Combined - Transparent.css b/config/waybar/style/[Extra] Modern-Combined - Transparent.css new file mode 100644 index 00000000..57cb5687 --- /dev/null +++ b/config/waybar/style/[Extra] Modern-Combined - Transparent.css @@ -0,0 +1,276 @@ +/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* Extra - Combined Modern - transparent */ + +/* NOTE: This style is NOT vertical layout friendly! */ + +@define-color white #F2F2F2; +@define-color black #000000; +@define-color text #FFFFFF; +@define-color lightgray #686868; +@define-color darkgray #353535; + +@define-color transparent rgba(1, 1, 1, 0.5); +@define-color teal-trans rgba(1, 117, 84, 0.5); +@define-color cyan rgba(53, 140, 169, 1); + +@define-color background-module @color1; +@define-color background-module2 @color11; +@define-color border-color @color12; +@define-color button-color @color10; +@define-color button-hover @color13; + +@define-color backgroundlight @color12; +@define-color backgrounddark #FFFFFF; +@define-color workspacesbackground1 @color12; +@define-color workspacesbackground2 #FFFFFF; +@define-color bordercolor @color11; +@define-color textcolor1 @color12; +@define-color textcolor2 #FFFFFF; +@define-color textcolor3 #FFFFFF; +@define-color iconcolor #FFFFFF; + +@import '../../.config/waybar/wallust/colors-waybar.css'; +@import "../waybar/style/catppuccin-themes/latte.css"; + +* { + font-family: "JetBrainsMono Nerd Font"; + font-weight: bold; + min-height: 0; + /* set font-size to 100% if font scaling is set to 1.00 using nwg-look */ + font-size: 97%; + font-feature-settings: '"zero", "ss01", "ss02", "ss03", "ss04", "ss05", "cv31"'; +} + +window#waybar { + background-color: transparent; + border-radius: 6px; + padding-top: 2px; + padding-bottom: 0px; + padding-right: 4px; + padding-left: 4px; +} + +tooltip { + background: #1e1e2e; + border-radius: 12px; + border-width: 1px; + border-style: solid; + border-color: @border-color; + color: #ffffff; +} + +#taskbar button, +#workspaces button { + padding: 0px 3px; + margin: 3px 2px; + border-radius: 4px; + color: @textcolor1; + background-color: @workspacesbackground2; + transition: all 0.1s linear; + opacity: 0.4; +} + +#taskbar button.active, +#workspaces button.active { + color: @textcolor1; + background: @workspacesbackground2; + border-radius: 4px; + min-width: 30px; + animation: gradient_f 20s ease-in infinite; + transition: all 0.3s cubic-bezier(.55,-0.68,.48,1.682); + opacity: 1.0; +} + +#taskbar button:hover, +#workspaces button:hover { + color: @red; + background: @workspacesbackground2; + border-radius: 3px; + opacity:0.6; + animation: gradient_f 20s ease-in infinite; + transition: all 0.3s cubic-bezier(.55,-0.68,.48,1.682); +} + +#workspaces button.focused { + color: #d8dee9; +} + +#workspaces button.urgent { + color: #11111b; + border-radius: 10px; +} + +/*-----module groups----*/ +.modules-left, +.modules-right { + background-color: transparent; +} + +.modules-center { + background-color: @background-module; + border-radius: 0px 0px 45px 45px; + padding-top: 8px; + padding-bottom: 8px; + padding-left: 10px; + padding-right: 6px; +} + +#backlight, +#backlight-slider, +#battery, +#bluetooth, +#clock, +#cpu, +#disk, +#idle_inhibitor, +#keyboard-state, +#memory, +#mode, +#mpris, +#network, +#power-profiles-daemon, +#pulseaudio, +#pulseaudio-slider, +#taskbar button, +#taskbar, +#temperature, +#tray, +#window, +#wireplumber, +#workspaces, +#custom-backlight, +#custom-browser, +#custom-cava_mviz, +#custom-cycle_wall, +#custom-file_manager, +#custom-keybinds, +#custom-keyboard, +#custom-light_dark, +#custom-lock, +#custom-hint, +#custom-hypridle, +#custom-menu, +#custom-playerctl, +#custom-power_vertical, +#custom-power, +#custom-settings, +#custom-spotify, +#custom-swaync, +#custom-tty, +#custom-updater, +#custom-weather, +#custom-weather.clearNight, +#custom-weather.cloudyFoggyDay, +#custom-weather.cloudyFoggyNight, +#custom-weather.default, +#custom-weather.rainyDay, +#custom-weather.rainyNight, +#custom-weather.severe, +#custom-weather.showyIcyDay, +#custom-weather.snowyIcyNight, +#custom-weather.sunnyDay { + color: white; + padding-right: 6px; + padding-left: 6px; +} + +#temperature.critical { + background-color: #ff0000; +} + +@keyframes blink { + to { + color: #000000; + } +} + +#custom-hint { + color: @peach; + padding-right: 6px; + padding-left: 6px; +} + +#pulseaudio.muted { + color: red; +} + +#temperature.critical { + background-color: @red; +} + +#battery.critical:not(.charging) { + color: #f53c3c; + animation-name: blink; + animation-duration: 3.0s; + animation-timing-function: steps(12); + animation-iteration-count: infinite; + animation-direction: alternate; +} + +#pulseaudio-slider, +#pulseaudio { + color: @foreground; +} + +#backlight-slider slider, +#pulseaudio-slider slider { + min-width: 0px; + min-height: 0px; + opacity: 0; + background-image: none; + border: none; + box-shadow: none; +} + +#backlight-slider trough, +#pulseaudio-slider trough { + min-width: 80px; + min-height: 5px; + border-radius: 5px; +} + +#backlight-slider highlight, +#pulseaudio-slider highlight { + min-height: 10px; + border-radius: 5px; +} + +#custom-hypridle, +#custom-lock, +#idle_inhibitor { + color: @teal; +} + +#custom-weather, +#custom-weather.clearNight, +#custom-weather.cloudyFoggyDay, +#custom-weather.cloudyFoggyNight, +#custom-weather.default, +#custom-weather.rainyDay, +#custom-weather.rainyNight, +#custom-weather.severe, +#custom-weather.showyIcyDay, +#custom-weather.snowyIcyNight, +#custom-weather.sunnyDay { + color: @lavender; + padding-right: 6px; + padding-left: 6px; +} + +/*-----Indicators----*/ +#custom-hypridle.notactive, +#idle_inhibitor.activated { + color: #39FF14; +} + +#clock { + color: @sapphire; + border-radius: 15px; +} + +#custom-updates { + color: @yellow; +} + +#custom-swaync{ + color: #ffd700;} diff --git a/config/waybar/style/[Extra] Modern-Combined.css b/config/waybar/style/[Extra] Modern-Combined.css new file mode 100644 index 00000000..5354a51a --- /dev/null +++ b/config/waybar/style/[Extra] Modern-Combined.css @@ -0,0 +1,291 @@ +/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* Extra - Combined Modern */ + +/* NOTE: This style is NOT vertical layout friendly! */ + +@define-color white #F2F2F2; +@define-color black #000000; +@define-color text #FFFFFF; +@define-color lightgray #686868; +@define-color darkgray #353535; + +@define-color transparent rgba(1, 1, 1, 0.5); +@define-color teal-trans rgba(1, 117, 84, 0.5); +@define-color cyan rgba(53, 140, 169, 1); + +@define-color background-module @color1; +@define-color background-module2 @color11; +@define-color border-color @color12; +@define-color button-color @color10; +@define-color button-hover @color13; + +@define-color backgroundlight @color12; +@define-color backgrounddark #FFFFFF; +@define-color workspacesbackground1 @color12; +@define-color workspacesbackground2 #FFFFFF; +@define-color bordercolor @color11; +@define-color textcolor1 @color12; +@define-color textcolor2 #FFFFFF; +@define-color textcolor3 #FFFFFF; +@define-color iconcolor #FFFFFF; + +@import '../../.config/waybar/wallust/colors-waybar.css'; +@import "../waybar/style/catppuccin-themes/latte.css"; + +* { + font-family: "JetBrainsMono Nerd Font"; + font-weight: bold; + min-height: 0; + /* set font-size to 100% if font scaling is set to 1.00 using nwg-look */ + font-size: 97%; + font-feature-settings: '"zero", "ss01", "ss02", "ss03", "ss04", "ss05", "cv31"'; +} + +window#waybar { + background-color: rgba(0,0,0,0.4); + border-radius: 6px; + padding-top: 2px; + padding-bottom: 0px; + padding-right: 4px; + padding-left: 4px; +} + +tooltip { + background: #1e1e2e; + border-radius: 12px; + border-width: 1px; + border-style: solid; + border-color: @border-color; + color: #ffffff; +} + +#taskbar button, +#workspaces button { + padding: 0px 3px; + margin: 3px 2px; + border-radius: 4px; + color: @textcolor1; + background-color: @workspacesbackground2; + transition: all 0.1s linear; + opacity: 0.4; +} + +#taskbar button.active, +#workspaces button.active { + color: @textcolor1; + background: @workspacesbackground2; + border-radius: 10px; + min-width: 30px; + animation: gradient_f 20s ease-in infinite; + transition: all 0.3s cubic-bezier(.55,-0.68,.48,1.682); + opacity: 1.0; +} + +#taskbar button:hover, +#workspaces button:hover { + color: @red; + background: @workspacesbackground2; + border-radius: 5px; + opacity:0.6; + animation: gradient_f 20s ease-in infinite; + transition: all 0.3s cubic-bezier(.55,-0.68,.48,1.682); +} + + +#workspaces button.focused { + color: #d8dee9; +} + +#workspaces button.urgent { + color: #11111b; + border-radius: 10px; +} + +#clock#2 { + color: #efe8f7; +} + +/*-----module groups----*/ +.modules-left, +.modules-right { + background-color: transparent; +} + +.modules-center { + background-color: @background-module; + border-radius: 0px 0px 45px 45px; + padding-top: 8px; + padding-bottom: 8px; + padding-left: 10px; + padding-right: 6px; +} + +#backlight, +#backlight-slider, +#battery, +#bluetooth, +#clock, +#cpu, +#disk, +#idle_inhibitor, +#keyboard-state, +#memory, +#mode, +#mpris, +#network, +#power-profiles-daemon, +#pulseaudio, +#pulseaudio-slider, +#taskbar, +#temperature, +#tray, +#window, +#wireplumber, +#workspaces, +#custom-backlight, +#custom-browser, +#custom-cycle_wall, +#custom-file_manager, +#custom-keybinds, +#custom-keyboard, +#custom-light_dark, +#custom-lock, +#custom-hint, +#custom-hypridle, +#custom-menu, +#custom-playerctl, +#custom-power_vertical, +#custom-power, +#custom-settings, +#custom-spotify, +#custom-swaync, +#custom-tty, +#custom-updater { + color: @foreground; + padding-right: 6px; + padding-left: 6px; +} + +#temperature.critical { + background-color: #ff0000; +} + +@keyframes blink { + to { + color: #000000; + } +} + +#custom-playerctl, +#custom-cava_mviz { + color: @sky; +} + +#custom-hint { + color: @peach; + padding-right: 6px; + padding-left: 6px; +} + +#pulseaudio-slider, +#pulseaudio { + color: @foreground; +} + +#pulseaudio.muted { + color: red; +} + +#backlight-slider slider, +#pulseaudio-slider slider { + min-width: 0px; + min-height: 0px; + opacity: 0; + background-image: none; + border: none; + box-shadow: none; +} + +#backlight-slider trough, +#pulseaudio-slider trough { + min-width: 80px; + min-height: 5px; + border-radius: 5px; + background-color: #22252a; +} + +#backlight-slider highlight, +#pulseaudio-slider highlight { + min-height: 10px; + border-radius: 5px; + background-color: #ba5663; +} + +#memory { + color: @sapphire; +} + +#cpu { + color: @mauve; +} + +#battery { + color: @rosewater; +} + +#disk { + color: @green; +} + +#temperature.critical { + background-color: @red; +} + +#battery.critical:not(.charging) { + color: #f53c3c; + animation-name: blink; + animation-duration: 3.0s; + animation-timing-function: steps(12); + animation-iteration-count: infinite; + animation-direction: alternate; +} + +#custom-hypridle, +#custom-lock, +#idle_inhibitor { + color: @teal; +} + +#custom-weather, +#custom-weather.clearNight, +#custom-weather.cloudyFoggyDay, +#custom-weather.cloudyFoggyNight, +#custom-weather.default, +#custom-weather.rainyDay, +#custom-weather.rainyNight, +#custom-weather.severe, +#custom-weather.showyIcyDay, +#custom-weather.snowyIcyNight, +#custom-weather.sunnyDay { + color: @lavender; + padding-right: 6px; + padding-left: 6px; +} + +/*-----Indicators----*/ +#custom-hypridle.notactive, +#idle_inhibitor.activated { + color: #39FF14; +} + +#clock { + color: @sapphire; + border-radius: 15px; +} + +#custom-updates { + color: @yellow; +} + +#custom-swaync{ + color: #ffd700;} diff --git a/config/waybar/style/[Extra] Rose Pine.css b/config/waybar/style/[Extra] Rose Pine.css index bfc58ec1..4d63d480 100644 --- a/config/waybar/style/[Extra] Rose Pine.css +++ b/config/waybar/style/[Extra] Rose Pine.css @@ -136,6 +136,7 @@ tooltip { #custom-hint, #custom-hypridle, #custom-menu, +#custom-playerctl, #custom-power_vertical, #custom-power, #custom-settings, @@ -210,6 +211,7 @@ tooltip { background-color: @main-bg; } +#backlight-slider slider, #pulseaudio-slider slider { min-width: 0px; min-height: 0px; @@ -219,33 +221,15 @@ tooltip { box-shadow: none; } +#backlight-slider trough, #pulseaudio-slider trough { min-width: 80px; min-height: 5px; border-radius: 5px; } +#backlight-slider highlight, #pulseaudio-slider highlight { min-height: 10px; border-radius: 5px; } - -#backlight-slider slider { - min-width: 0px; - min-height: 0px; - opacity: 0; - background-image: none; - border: none; - box-shadow: none; -} - -#backlight-slider trough { - min-width: 80px; - min-height: 10px; - border-radius: 5px; -} - -#backlight-slider highlight { - min-width: 10px; - border-radius: 5px; -} diff --git a/config/waybar/style/[Extra] Simple Pink.css b/config/waybar/style/[Extra] Simple Pink.css index a2e2bdb1..243b8f01 100644 --- a/config/waybar/style/[Extra] Simple Pink.css +++ b/config/waybar/style/[Extra] Simple Pink.css @@ -21,14 +21,6 @@ window#waybar.hidden { opacity: 0.5; } -window#waybar.empty, -window#waybar.empty #window { - padding: 0px; - border: 0px; - background-color: transparent; -} - - tooltip { background: #1e1e2e; border-radius: 10px; @@ -39,6 +31,7 @@ tooltip { } /*-----module groups----*/ +.modules-left, .modules-right { border: 5px solid #19141b; border-radius: 50px 50px 50px 50px; @@ -57,21 +50,10 @@ tooltip { padding-left: 4px; } -.modules-left { - border: 5px solid #0d0a0f; - border-radius: 50px 50px 50px 50px; - background-color: #ba5663; - padding-top: 2px; - padding-bottom: 2px; - padding-right: 4px; - padding-left: 4px; -} - #workspaces button { color: pink; box-shadow: none; text-shadow: none; - padding: 0px; border-radius: 9px; padding-left: 4px; padding-right: 4px; @@ -79,6 +61,7 @@ tooltip { transition: all 0.5s cubic-bezier(.55,-0.68,.48,1.682); } +#taskbar button.active, #workspaces button.active { color: whitesmoke; background-color: pink; @@ -99,6 +82,7 @@ tooltip { border-radius: 10px; } +#taskbar button:hover, #workspaces button:hover { color: #ba5663; background-color: #0d0a0d; @@ -107,7 +91,6 @@ tooltip { padding-right: 2px; animation: gradient_f 20s ease-in infinite; transition: all 0.3s cubic-bezier(.55,-0.68,.48,1.682); - } #backlight, @@ -145,6 +128,7 @@ tooltip { #custom-hint, #custom-hypridle, #custom-menu, +#custom-playerctl, #custom-power_vertical, #custom-power, #custom-settings, @@ -164,8 +148,8 @@ tooltip { #custom-weather.snowyIcyNight, #custom-weather.sunnyDay { color: whitesmoke; - padding-top: 1px; - padding-bottom: 1px; + padding-top: 2px; + padding-bottom: 2px; padding-right: 4px; padding-left: 4px; @@ -187,23 +171,6 @@ tooltip { color: #39FF14; } -#taskbar button.active { - background-color: pink; - padding-left: 12px; - padding-right: 12px; - animation: gradient_f 20s ease-in infinite; - transition: all 0.3s cubic-bezier(.55,-0.68,.48,1.682); -} - -#taskbar button:hover { - color: #ba5663; - background-color: #0d0a0d; - padding-left: 3px; - padding-right: 3px; - animation: gradient_f 20s ease-in infinite; - transition: all 0.3s cubic-bezier(.55,-0.68,.48,1.682); -} - #battery.critical:not(.charging) { color: #f53c3c; animation-name: blink; @@ -213,46 +180,27 @@ tooltip { animation-direction: alternate; } +#backlight-slider slider, #pulseaudio-slider slider { - min-width: 0px; - min-height: 0px; - opacity: 0; - background-image: none; - border: none; - box-shadow: none; + min-width: 0px; + min-height: 0px; + opacity: 0; + background-image: none; + border: none; + box-shadow: none; } +#backlight-slider trough, #pulseaudio-slider trough { - min-width: 80px; - min-height: 5px; - border-radius: 5px; - background-color: #22252a; + min-width: 80px; + min-height: 5px; + border-radius: 5px; + background-color: #22252a; } +#backlight-slider highlight, #pulseaudio-slider highlight { - min-height: 10px; - border-radius: 5px; - background-color: pink; -} - -#backlight-slider slider { - min-width: 0px; - min-height: 0px; - opacity: 0; - background-image: none; - border: none; - box-shadow: none; -} - -#backlight-slider trough { - min-width: 80px; - min-height: 10px; - border-radius: 5px; - background-color: #22252a; -} - -#backlight-slider highlight { - min-width: 10px; - border-radius: 5px; - background-color: pink; + min-height: 10px; + border-radius: 5px; + background-color: #ba5663; }
\ No newline at end of file diff --git a/config/waybar/style/[Light] Monochrome Contrast.css b/config/waybar/style/[Light] Monochrome Contrast.css index d9a6b391..24d53904 100644 --- a/config/waybar/style/[Light] Monochrome Contrast.css +++ b/config/waybar/style/[Light] Monochrome Contrast.css @@ -32,6 +32,8 @@ tooltip label{ color: #cdd6f4; } /*-----module groups----*/ +.modules-left, +.modules-center, .modules-right { background-color: white; color: black; @@ -44,30 +46,7 @@ tooltip label{ padding-right: 4px; padding-left: 4px; } -.modules-center { - background-color: white; - color: black; - border-bottom: 2px; - border-style: solid; - border-color: black; - border-radius: 10px; - padding-top: 2px; - padding-bottom: 2px; - padding-right: 4px; - padding-left: 4px; -} -.modules-left { - background-color: white; - color: black; - border-bottom: 2px; - border-style: solid; - border-color: black; - border-radius: 10px; - padding-top: 2px; - padding-bottom: 2px; - padding-right: 4px; - padding-left: 4px; -} + /*-----modules indv----*/ #taskbar button, #workspaces button { @@ -139,6 +118,7 @@ tooltip label{ #custom-hint, #custom-hypridle, #custom-menu, +#custom-playerctl, #custom-power_vertical, #custom-power, #custom-settings, @@ -193,6 +173,7 @@ tooltip label{ animation-direction: alternate; } +#backlight-slider slider, #pulseaudio-slider slider { min-width: 0px; min-height: 0px; @@ -202,6 +183,7 @@ tooltip label{ box-shadow: none; } +#backlight-slider trough, #pulseaudio-slider trough { min-width: 80px; min-height: 5px; @@ -209,27 +191,8 @@ tooltip label{ background-color: grey; } +#backlight-slider highlight, #pulseaudio-slider highlight { min-height: 10px; border-radius: 5px; } - -#backlight-slider slider { - min-width: 0px; - min-height: 0px; - opacity: 0; - background-image: none; - border: none; - box-shadow: none; -} - -#backlight-slider trough { - min-width: 80px; - min-height: 10px; - border-radius: 5px; -} - -#backlight-slider highlight { - min-width: 10px; - border-radius: 5px; -} diff --git a/config/waybar/style/[Light] Obsidian Glow.css b/config/waybar/style/[Light] Obsidian Glow.css index 8306159e..af256b8f 100644 --- a/config/waybar/style/[Light] Obsidian Glow.css +++ b/config/waybar/style/[Light] Obsidian Glow.css @@ -19,14 +19,6 @@ window#waybar.hidden { opacity: 0.7; } -window#waybar.empty, -window#waybar.empty #window { - padding: 0px; - border: 0px; - /* background-color: rgba(66,66,66,0.5); */ /* transparent */ - background-color: transparent; -} - tooltip { background: white; border-radius: 10px; @@ -112,6 +104,7 @@ tooltip label { #custom-hint, #custom-hypridle, #custom-menu, +#custom-playerctl, #custom-power_vertical, #custom-power, #custom-settings, @@ -179,6 +172,7 @@ tooltip label { animation-direction: alternate; } +#backlight-slider slider, #pulseaudio-slider slider { min-width: 0px; min-height: 0px; @@ -187,38 +181,18 @@ tooltip label { border: none; box-shadow: none; } - + +#backlight-slider trough, #pulseaudio-slider trough { min-width: 80px; min-height: 5px; border-radius: 5px; background-color: grey; } - -#pulseaudio-slider highlight { - min-height: 10px; - border-radius: 5px; - background-color: #ba5663; -} -#backlight-slider slider { - min-width: 0px; - min-height: 0px; - opacity: 0; - background-image: none; - border: none; - box-shadow: none; -} - -#backlight-slider trough { - min-width: 80px; +#backlight-slider highlight, +#pulseaudio-slider highlight { min-height: 10px; border-radius: 5px; - background-color: grey; -} - -#backlight-slider highlight { - min-width: 10px; - border-radius: 5px; background-color: #ba5663; }
\ No newline at end of file diff --git a/config/waybar/style/[Rainbow] RGB Bordered.css b/config/waybar/style/[Rainbow] RGB Bordered.css index 3ffbceea..b0a239d6 100644 --- a/config/waybar/style/[Rainbow] RGB Bordered.css +++ b/config/waybar/style/[Rainbow] RGB Bordered.css @@ -125,6 +125,7 @@ window#waybar.empty #window { #custom-hint, #custom-hypridle, #custom-menu, +#custom-playerctl, #custom-power_vertical, #custom-power, #custom-settings, @@ -279,6 +280,8 @@ window#waybar.empty #window { background-color: @surface0; color: @text; } + +#backlight-slider slider, #pulseaudio-slider slider { min-width: 0px; min-height: 0px; @@ -288,33 +291,15 @@ window#waybar.empty #window { box-shadow: none; } +#backlight-slider trough, #pulseaudio-slider trough { min-width: 80px; min-height: 5px; border-radius: 5px; } +#backlight-slider highlight, #pulseaudio-slider highlight { min-height: 10px; border-radius: 5px; -} - -#backlight-slider slider { - min-width: 0px; - min-height: 0px; - opacity: 0; - background-image: none; - border: none; - box-shadow: none; -} - -#backlight-slider trough { - min-width: 80px; - min-height: 10px; - border-radius: 5px; -} - -#backlight-slider highlight { - min-width: 10px; - border-radius: 5px; }
\ No newline at end of file diff --git a/config/waybar/style/[Retro] Simple Style.css b/config/waybar/style/[Retro] Simple Style.css index eec369aa..866c87db 100644 --- a/config/waybar/style/[Retro] Simple Style.css +++ b/config/waybar/style/[Retro] Simple Style.css @@ -79,6 +79,7 @@ window#waybar { #custom-hint, #custom-hypridle, #custom-menu, +#custom-playerctl, #custom-power_vertical, #custom-power, #custom-settings, @@ -97,8 +98,8 @@ window#waybar { #custom-weather.showyIcyDay, #custom-weather.snowyIcyNight, #custom-weather.sunnyDay { + padding: 6px; color: @foreground; - padding: 3px 6px 3px 6px; } #battery.warning, @@ -149,6 +150,7 @@ window#waybar { border-bottom: 3px solid green; } +#backlight-slider slider, #pulseaudio-slider slider { min-width: 0px; min-height: 0px; @@ -157,38 +159,18 @@ window#waybar { border: none; box-shadow: none; } - + +#backlight-slider trough, #pulseaudio-slider trough { min-width: 80px; min-height: 5px; border-radius: 5px; background-color: @dim; } - -#pulseaudio-slider highlight { - min-height: 10px; - border-radius: 5px; - background-color: @green; -} -#backlight-slider slider { - min-width: 0px; - min-height: 0px; - opacity: 0; - background-image: none; - border: none; - box-shadow: none; -} - -#backlight-slider trough { - min-width: 80px; +#backlight-slider highlight, +#pulseaudio-slider highlight { min-height: 10px; border-radius: 5px; - background-color: @dim; -} - -#backlight-slider highlight { - min-width: 10px; - border-radius: 5px; background-color: @green; -} +}
\ No newline at end of file diff --git a/config/waybar/style/[Transparent] Crystal Clear.css b/config/waybar/style/[Transparent] Crystal Clear.css index f437c364..285ce82a 100644 --- a/config/waybar/style/[Transparent] Crystal Clear.css +++ b/config/waybar/style/[Transparent] Crystal Clear.css @@ -99,6 +99,7 @@ window#waybar.empty #window { #custom-hint, #custom-hypridle, #custom-menu, +#custom-playerctl, #custom-power_vertical, #custom-power, #custom-settings, @@ -163,6 +164,7 @@ window#waybar.empty #window { animation-direction: alternate; } +#backlight-slider slider, #pulseaudio-slider slider { min-width: 0px; min-height: 0px; @@ -172,6 +174,7 @@ window#waybar.empty #window { box-shadow: none; } +#backlight-slider trough, #pulseaudio-slider trough { min-width: 80px; min-height: 10px; @@ -179,32 +182,11 @@ window#waybar.empty #window { background-color: black; } +#backlight-slider highlight, #pulseaudio-slider highlight { min-height: 10px; border-radius: 5px; background-color: wheat; } - -#backlight-slider slider { - min-width: 0px; - min-height: 0px; - opacity: 0; - background-image: none; - border: none; - box-shadow: none; -} - -#backlight-slider trough { - min-width: 80px; - min-height: 10px; - border-radius: 5px; - background-color: black; -} - -#backlight-slider highlight { - min-width: 10px; - border-radius: 5px; - background-color: wheat; -}
\ No newline at end of file diff --git a/config/waybar/style/[WALLUST] ML4W-modern-mixed.css b/config/waybar/style/[WALLUST] ML4W-modern-mixed.css index 59de390f..561aaa6c 100644 --- a/config/waybar/style/[WALLUST] ML4W-modern-mixed.css +++ b/config/waybar/style/[WALLUST] ML4W-modern-mixed.css @@ -99,7 +99,6 @@ window#waybar.empty #window { #taskbar { background: @backgroundlight; margin: 3px 15px 3px 0px; - padding:0px; border-radius: 5px 5px 5px 5px; font-weight: normal; font-style: normal; @@ -163,6 +162,7 @@ window#waybar.empty #window { #custom-hint, #custom-hypridle, #custom-menu, +#custom-playerctl, #custom-power_vertical, #custom-power, #custom-settings, @@ -181,6 +181,7 @@ window#waybar.empty #window { #custom-weather.showyIcyDay, #custom-weather.snowyIcyNight, #custom-weather.sunnyDay { + padding: 2px; margin-right: 8px; margin-left: 6px; font-size: 100%; @@ -371,3 +372,26 @@ window#waybar.empty #window { #tray > .needs-attention { -gtk-icon-effect: highlight; } + +#backlight-slider slider, +#pulseaudio-slider slider { + min-width: 0px; + min-height: 0px; + opacity: 0; + background-image: none; + border: none; + box-shadow: none; +} + +#backlight-slider trough, +#pulseaudio-slider trough { + min-width: 80px; + min-height: 5px; + border-radius: 5px; +} + +#backlight-slider highlight, +#pulseaudio-slider highlight { + min-height: 10px; + border-radius: 5px; +}
\ No newline at end of file diff --git a/config/waybar/style/[WALLUST] ML4W-modern.css b/config/waybar/style/[WALLUST] ML4W-modern.css index e5ac5417..b7f54fa4 100644 --- a/config/waybar/style/[WALLUST] ML4W-modern.css +++ b/config/waybar/style/[WALLUST] ML4W-modern.css @@ -157,6 +157,7 @@ window#waybar.empty #window { #custom-hint, #custom-hypridle, #custom-menu, +#custom-playerctl, #custom-power_vertical, #custom-power, #custom-settings, @@ -351,4 +352,27 @@ window#waybar.empty #window { #tray > .needs-attention { -gtk-icon-effect: highlight; +} + +#backlight-slider slider, +#pulseaudio-slider slider { + min-width: 0px; + min-height: 0px; + opacity: 0; + background-image: none; + border: none; + box-shadow: none; +} + +#backlight-slider trough, +#pulseaudio-slider trough { + min-width: 80px; + min-height: 5px; + border-radius: 5px; +} + +#backlight-slider highlight, +#pulseaudio-slider highlight { + min-height: 10px; + border-radius: 5px; }
\ No newline at end of file diff --git a/config/waybar/style/[Wallust Bordered] Chroma Fusion Edge.css b/config/waybar/style/[Wallust Bordered] Chroma Fusion Edge.css index bb8d2570..a70f4973 100644 --- a/config/waybar/style/[Wallust Bordered] Chroma Fusion Edge.css +++ b/config/waybar/style/[Wallust Bordered] Chroma Fusion Edge.css @@ -89,6 +89,7 @@ tooltip { #custom-hint, #custom-hypridle, #custom-menu, +#custom-playerctl, #custom-power_vertical, #custom-power, #custom-settings, @@ -293,6 +294,7 @@ tooltip { animation-direction: alternate; } +#backlight-slider slider, #pulseaudio-slider slider { min-width: 0px; min-height: 0px; @@ -302,35 +304,17 @@ tooltip { box-shadow: none; } +#backlight-slider trough, #pulseaudio-slider trough { min-width: 80px; min-height: 5px; border-radius: 5px; } +#backlight-slider highlight, #pulseaudio-slider highlight { min-height: 10px; border-radius: 5px; } -#backlight-slider slider { - min-width: 0px; - min-height: 0px; - opacity: 0; - background-image: none; - border: none; - box-shadow: none; -} - -#backlight-slider trough { - min-width: 80px; - min-height: 10px; - border-radius: 5px; -} - -#backlight-slider highlight { - min-width: 10px; - border-radius: 5px; -} - diff --git a/config/waybar/style/[Wallust Bordered] Chroma Simple.css b/config/waybar/style/[Wallust Bordered] Chroma Simple.css index fed61902..76bfec7d 100644 --- a/config/waybar/style/[Wallust Bordered] Chroma Simple.css +++ b/config/waybar/style/[Wallust Bordered] Chroma Simple.css @@ -113,6 +113,7 @@ tooltip { #custom-hint, #custom-hypridle, #custom-menu, +#custom-playerctl, #custom-power_vertical, #custom-power, #custom-settings, @@ -283,6 +284,7 @@ tooltip { margin-right: 5px; } +#backlight-slider slider, #pulseaudio-slider slider { min-width: 0px; min-height: 0px; @@ -292,33 +294,15 @@ tooltip { box-shadow: none; } +#backlight-slider trough, #pulseaudio-slider trough { min-width: 80px; min-height: 5px; border-radius: 5px; } +#backlight-slider highlight, #pulseaudio-slider highlight { min-height: 10px; border-radius: 5px; } - -#backlight-slider slider { - min-width: 0px; - min-height: 0px; - opacity: 0; - background-image: none; - border: none; - box-shadow: none; -} - -#backlight-slider trough { - min-width: 80px; - min-height: 10px; - border-radius: 5px; -} - -#backlight-slider highlight { - min-width: 10px; - border-radius: 5px; -} diff --git a/config/waybar/style/[Wallust Transparent] Crystal Clear.css b/config/waybar/style/[Wallust Transparent] Crystal Clear.css index d8f21d29..a17eb71a 100644 --- a/config/waybar/style/[Wallust Transparent] Crystal Clear.css +++ b/config/waybar/style/[Wallust Transparent] Crystal Clear.css @@ -132,6 +132,7 @@ tooltip { #custom-hint, #custom-hypridle, #custom-menu, +#custom-playerctl, #custom-power_vertical, #custom-power, #custom-settings, @@ -181,6 +182,7 @@ tooltip { animation-direction: alternate; } +#backlight-slider slider, #pulseaudio-slider slider { min-width: 0px; min-height: 0px; @@ -190,6 +192,7 @@ tooltip { box-shadow: none; } +#backlight-slider trough, #pulseaudio-slider trough { min-width: 80px; min-height: 10px; @@ -197,32 +200,11 @@ tooltip { background-color: black; } +#backlight-slider highlight, #pulseaudio-slider highlight { min-height: 10px; border-radius: 5px; background-color: wheat; } - -#backlight-slider slider { - min-width: 0px; - min-height: 0px; - opacity: 0; - background-image: none; - border: none; - box-shadow: none; -} - -#backlight-slider trough { - min-width: 80px; - min-height: 10px; - border-radius: 5px; - background-color: black; -} - -#backlight-slider highlight { - min-width: 10px; - border-radius: 5px; - background-color: wheat; -}
\ No newline at end of file diff --git a/config/waybar/style/[Wallust] Box type.css b/config/waybar/style/[Wallust] Box type.css index efdf11bf..c831f51b 100644 --- a/config/waybar/style/[Wallust] Box type.css +++ b/config/waybar/style/[Wallust] Box type.css @@ -114,6 +114,7 @@ window#waybar.empty #window { #custom-hint, #custom-hypridle, #custom-menu, +#custom-playerctl, #custom-power_vertical, #custom-power, #custom-settings, @@ -191,42 +192,25 @@ window#waybar.empty #window { } } +#backlight-slider slider, #pulseaudio-slider slider { min-width: 0px; min-height: 0px; opacity: 10; background-image: none; border: none; - box-shadow: none; + box-shadow: @color12; } +#backlight-slider trough, #pulseaudio-slider trough { min-width: 80px; min-height: 5px; border-radius: 5px; } +#backlight-slider highlight, #pulseaudio-slider highlight { min-height: 10px; border-radius: 5px; } - -#backlight-slider slider { - min-width: 0px; - min-height: 0px; - opacity: 0; - background-image: none; - border: none; - box-shadow: @color12; -} - -#backlight-slider trough { - min-width: 80px; - min-height: 10px; - border-radius: 5px; -} - -#backlight-slider highlight { - min-width: 10px; - border-radius: 5px; -} diff --git a/config/waybar/style/[Wallust] Chroma Edge.css b/config/waybar/style/[Wallust] Chroma Edge.css index 71d59bd5..ea20f412 100644 --- a/config/waybar/style/[Wallust] Chroma Edge.css +++ b/config/waybar/style/[Wallust] Chroma Edge.css @@ -116,6 +116,7 @@ tooltip label{ #custom-hint, #custom-hypridle, #custom-menu, +#custom-playerctl, #custom-power_vertical, #custom-power, #custom-settings, @@ -344,6 +345,7 @@ label:focus { transition: all 0.3s cubic-bezier(.55,-0.68,.48,1.682); } +#backlight-slider slider, #pulseaudio-slider slider { min-width: 0px; min-height: 0px; @@ -353,33 +355,15 @@ label:focus { box-shadow: none; } +#backlight-slider trough, #pulseaudio-slider trough { min-width: 80px; min-height: 5px; border-radius: 5px; } +#backlight-slider highlight, #pulseaudio-slider highlight { min-height: 10px; border-radius: 5px; } - -#backlight-slider slider { - min-width: 0px; - min-height: 0px; - opacity: 0; - background-image: none; - border: none; - box-shadow: none; -} - -#backlight-slider trough { - min-width: 80px; - min-height: 10px; - border-radius: 5px; -} - -#backlight-slider highlight { - min-width: 10px; - border-radius: 5px; -} diff --git a/config/waybar/style/[Wallust] Chroma Fusion.css b/config/waybar/style/[Wallust] Chroma Fusion.css index c1610187..3d75f060 100644 --- a/config/waybar/style/[Wallust] Chroma Fusion.css +++ b/config/waybar/style/[Wallust] Chroma Fusion.css @@ -90,6 +90,7 @@ tooltip { #custom-hint, #custom-hypridle, #custom-menu, +#custom-playerctl, #custom-power_vertical, #custom-power, #custom-settings, @@ -295,6 +296,7 @@ tooltip { animation-direction: alternate; } +#backlight-slider slider, #pulseaudio-slider slider { min-width: 0px; min-height: 0px; @@ -304,35 +306,17 @@ tooltip { box-shadow: none; } +#backlight-slider trough, #pulseaudio-slider trough { min-width: 80px; min-height: 5px; border-radius: 5px; } +#backlight-slider highlight, #pulseaudio-slider highlight { min-height: 10px; border-radius: 5px; } -#backlight-slider slider { - min-width: 0px; - min-height: 0px; - opacity: 0; - background-image: none; - border: none; - box-shadow: none; -} - -#backlight-slider trough { - min-width: 80px; - min-height: 10px; - border-radius: 5px; -} - -#backlight-slider highlight { - min-width: 10px; - border-radius: 5px; -} - diff --git a/config/waybar/style/[Wallust] Chroma Tally.css b/config/waybar/style/[Wallust] Chroma Tally.css index 5939b53e..4013484e 100644 --- a/config/waybar/style/[Wallust] Chroma Tally.css +++ b/config/waybar/style/[Wallust] Chroma Tally.css @@ -22,7 +22,7 @@ window#waybar { #workspaces { background: transparent; - padding: 0px 1px; + padding: 2px; border-radius: 15px; border: 0px; font-style: normal; @@ -101,6 +101,7 @@ tooltip { #custom-hint, #custom-hypridle, #custom-menu, +#custom-playerctl, #custom-power_vertical, #custom-power, #custom-settings, @@ -246,6 +247,7 @@ tooltip { color:#d08770; } +#backlight-slider slider, #pulseaudio-slider slider { min-width: 0px; min-height: 0px; @@ -255,35 +257,15 @@ tooltip { box-shadow: none; } +#backlight-slider trough, #pulseaudio-slider trough { min-width: 80px; min-height: 5px; border-radius: 5px; } +#backlight-slider highlight, #pulseaudio-slider highlight { min-height: 10px; border-radius: 5px; -} - -#backlight-slider slider { - min-width: 0px; - min-height: 0px; - opacity: 0; - background-image: none; - border: none; - box-shadow: none; -} - -#backlight-slider trough { - min-width: 80px; - min-height: 10px; - border-radius: 5px; -} - -#backlight-slider highlight { - min-width: 10px; - border-radius: 5px; -} - - +}
\ No newline at end of file diff --git a/config/waybar/style/[Wallust] Colored.css b/config/waybar/style/[Wallust] Colored.css index 07c366cd..4baf6705 100644 --- a/config/waybar/style/[Wallust] Colored.css +++ b/config/waybar/style/[Wallust] Colored.css @@ -139,6 +139,7 @@ tooltip { #custom-hint, #custom-hypridle, #custom-menu, +#custom-playerctl, #custom-power_vertical, #custom-power, #custom-settings, @@ -204,6 +205,7 @@ tooltip { animation-direction: alternate; } +#backlight-slider slider, #pulseaudio-slider slider { min-width: 0px; min-height: 0px; @@ -213,37 +215,19 @@ tooltip { box-shadow: none; } +#backlight-slider trough, #pulseaudio-slider trough { min-width: 80px; min-height: 5px; border-radius: 5px; } +#backlight-slider highlight, #pulseaudio-slider highlight { min-height: 10px; border-radius: 5px; } -#backlight-slider slider { - min-width: 0px; - min-height: 0px; - opacity: 0; - background-image: none; - border: none; - box-shadow: none; -} - -#backlight-slider trough { - min-width: 80px; - min-height: 10px; - border-radius: 5px; -} - -#backlight-slider highlight { - min-width: 10px; - border-radius: 5px; -} - #custom-cava_mviz { padding-right: 10px; }
\ No newline at end of file diff --git a/config/waybar/style/[Wallust] Simple.css b/config/waybar/style/[Wallust] Simple.css index 830d8f60..eb0ee0e9 100644 --- a/config/waybar/style/[Wallust] Simple.css +++ b/config/waybar/style/[Wallust] Simple.css @@ -32,6 +32,8 @@ tooltip { } /*-----module groups----*/ +.modules-left, +.modules-center, .modules-right { background-color: @color0; border: 0.5px solid @color15; @@ -41,24 +43,6 @@ tooltip { padding-right: 4px; padding-left: 4px; } -.modules-center { - background-color: @color0; - border: 0.5px solid @color15; - border-radius: 10px; - padding-top: 2px; - padding-bottom: 2px; - padding-right: 4px; - padding-left: 4px; -} -.modules-left { - background-color: @color0; - border: 0.5px solid @color15; - border-radius: 10px; - padding-top: 2px; - padding-bottom: 2px; - padding-right: 4px; - padding-left: 4px; -} /*-----modules indv----*/ #workspaces button { @@ -134,6 +118,7 @@ tooltip { #custom-hint, #custom-hypridle, #custom-menu, +#custom-playerctl, #custom-power_vertical, #custom-power, #custom-settings, @@ -215,6 +200,7 @@ tooltip { animation-direction: alternate; } +#backlight-slider slider, #pulseaudio-slider slider { min-width: 0px; min-height: 0px; @@ -224,33 +210,15 @@ tooltip { box-shadow: none; } +#backlight-slider trough, #pulseaudio-slider trough { min-width: 80px; min-height: 5px; border-radius: 5px; } +#backlight-slider highlight, #pulseaudio-slider highlight { min-height: 10px; border-radius: 5px; -} - -#backlight-slider slider { - min-width: 0px; - min-height: 0px; - opacity: 0; - background-image: none; - border: none; - box-shadow: none; -} - -#backlight-slider trough { - min-width: 80px; - min-height: 10px; - border-radius: 5px; -} - -#backlight-slider highlight { - min-width: 10px; - border-radius: 5px; }
\ No newline at end of file @@ -3,7 +3,7 @@ clear wallpaper=$HOME/.config/hypr/wallpaper_effects/.wallpaper_modified -waybar_style="$HOME/.config/waybar/style/[Wallust] Chroma Tally.css" +waybar_style="$HOME/.config/waybar/style/[Extra] Modern-Combined - Transparent.css" waybar_config="$HOME/.config/waybar/configs/[TOP] Default_v5" waybar_config_laptop="$HOME/.config/waybar/configs/[TOP] Default Laptop_v5" @@ -513,7 +513,8 @@ FILES_TO_RESTORE=( "Laptops.conf" "Monitors.conf" "Startup_Apps.conf" - "UserDecorAnimations.conf" + "UserDecorations.conf" + "UserAnimations.conf" "UserKeybinds.conf" "UserSettings.conf" "WindowRules.conf" |
