diff options
| author | Ja.KooLit <85185940+JaKooLit@users.noreply.github.com> | 2025-02-19 00:17:45 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-02-19 00:17:45 +0900 |
| commit | 259be5801f64ddcec5bdc7d97512322079c57314 (patch) | |
| tree | 00a1a8549388f6286027ca3859963102f80a40c2 /config | |
| parent | 7ed5afe7c68777c83b99fffae067374d508eb9b9 (diff) | |
| parent | 6545cbd6f3cc7620f53e5872e018ea8c0b91d9d8 (diff) | |
Merge pull request #561 from JaKooLit/main
main to development
Diffstat (limited to 'config')
35 files changed, 229 insertions, 99 deletions
diff --git a/config/fastfetch/config-pokemon.jsonc b/config/fastfetch/config-pokemon.jsonc new file mode 100644 index 00000000..2b4522f4 --- /dev/null +++ b/config/fastfetch/config-pokemon.jsonc @@ -0,0 +1,73 @@ +{ + "$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json", + "logo": { + "height": 5, + "width": 10, + "padding": { + "top": 1 + } + }, + "display": { + "separator": " -> " + }, + "modules": [ + "break", + { + "type": "title", + "keyWidth": 10, + "format": " {6}{7}{8}" + }, + { + "type": "custom", + "format": " ─────────────────────────── " + }, + { + "type": "kernel", + "key": " ", + "keyColor": "yellow" + }, + { + "type": "wm", + "key": " ", + "keyColor": "blue" + }, + { + "type": "shell", + "key": " ", + "keyColor": "yellow" + }, + { + "type": "terminal", + "key": " ", + "keyColor": "blue" + }, + /* + { + "type": "packages", + "key": " ", + "keyColor": "yellow" + }, + */ + { + "type": "memory", + "key": " ", + "keyColor": "magenta", + // format: used / total + "format": "{1} / {2}" + }, + { + "type": "uptime", + "key": " ", + "keyColor": "green" + }, + { + "type": "custom", + "format": " ─────────────────────────── " + }, + { + "type": "custom", + "format": " \u001b[31m \u001b[32m \u001b[33m \u001b[34m \u001b[35m \u001b[36m \u001b[37m \u001b[90m " + }, + "break", + ] +} diff --git a/config/hypr/UserScripts/WallpaperEffects.sh b/config/hypr/UserScripts/WallpaperEffects.sh index 2573f5e0..52cd0b4d 100755 --- a/config/hypr/UserScripts/WallpaperEffects.sh +++ b/config/hypr/UserScripts/WallpaperEffects.sh @@ -7,7 +7,7 @@ terminal=kitty wallpaper_current="$HOME/.config/hypr/wallpaper_effects/.wallpaper_current" wallpaper_output="$HOME/.config/hypr/wallpaper_effects/.wallpaper_modified" SCRIPTSDIR="$HOME/.config/hypr/scripts" -focused_monitor=$(hyprctl monitors | awk '/^Monitor/{name=$2} /focused: yes/{print name}') +focused_monitor=$(hyprctl monitors -j | jq -r '.[] | select(.focused) | .name') rofi_theme="~/.config/rofi/config-wallpaper-effect.rasi" # Directory for swaync diff --git a/config/hypr/UserScripts/WallpaperSelect.sh b/config/hypr/UserScripts/WallpaperSelect.sh index 86264775..4d0f8320 100755 --- a/config/hypr/UserScripts/WallpaperSelect.sh +++ b/config/hypr/UserScripts/WallpaperSelect.sh @@ -8,13 +8,24 @@ wallDIR="$HOME/Pictures/wallpapers" SCRIPTSDIR="$HOME/.config/hypr/scripts" wallpaper_current="$HOME/.config/hypr/wallpaper_effects/.wallpaper_current" +rofi_override="element-icon{size:${icon_size}px;}" + # Directory for swaync iDIR="$HOME/.config/swaync/images" iDIRi="$HOME/.config/swaync/icons" # variables rofi_theme="~/.config/rofi/config-wallpaper.rasi" -focused_monitor=$(hyprctl monitors | awk '/^Monitor/{name=$2} /focused: yes/{print name}') +focused_monitor=$(hyprctl monitors -j | jq -r '.[] | select(.focused) | .name') + +# Get monitor width and DPI +monitor_width=$(hyprctl monitors -j | jq -r --arg mon "$focused_monitor" '.[] | select(.name == $mon) | .width') +scale_factor=$(hyprctl monitors -j | jq -r --arg mon "$focused_monitor" '.[] | select(.name == $mon) | .scale') + +# Calculate icon size for rofi +icon_size=$(echo "scale=1; ($monitor_width * 14) / ($scale_factor * 100)" | bc) +rofi_override="element-icon{size:${icon_size}px;}" + # swww transition config FPS=60 TYPE="any" @@ -34,7 +45,7 @@ RANDOM_PIC="${PICS[$((RANDOM % ${#PICS[@]}))]}" RANDOM_PIC_NAME=". random" # Rofi command -rofi_command="rofi -i -show -dmenu -config $rofi_theme" +rofi_command="rofi -i -show -dmenu -config $rofi_theme -theme-str $rofi_override" # Sorting Wallpapers menu() { diff --git a/config/hypr/scripts/WaybarLayout.sh b/config/hypr/scripts/WaybarLayout.sh index fe16d3e1..33f31842 100755 --- a/config/hypr/scripts/WaybarLayout.sh +++ b/config/hypr/scripts/WaybarLayout.sh @@ -2,7 +2,6 @@ # /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## # Script for waybar layout or configs -set -x IFS=$'\n\t' # Define directories diff --git a/config/hypr/scripts/WaybarStyles.sh b/config/hypr/scripts/WaybarStyles.sh index 471c85e5..a265eae0 100755 --- a/config/hypr/scripts/WaybarStyles.sh +++ b/config/hypr/scripts/WaybarStyles.sh @@ -2,8 +2,6 @@ # /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## # Script for waybar styles -set -x - IFS=$'\n\t' # Define directories diff --git a/config/rofi/config-Animations.rasi b/config/rofi/config-Animations.rasi index ef7adc6c..315eb2b9 100644 --- a/config/rofi/config-Animations.rasi +++ b/config/rofi/config-Animations.rasi @@ -23,9 +23,10 @@ entry { /* ---- Listview ---- */ listview { columns: 2; - lines: 9; + lines: 7; fixed-height: false; margin: 10px; + scrollbar: true; } /* ---- Elements ---- */ diff --git a/config/rofi/config-clipboard.rasi b/config/rofi/config-clipboard.rasi index 4b6ba384..4a7bf662 100644 --- a/config/rofi/config-clipboard.rasi +++ b/config/rofi/config-clipboard.rasi @@ -23,7 +23,7 @@ entry { /* ---- Listview ---- */ listview { columns: 1; - lines: 8; + lines: 7; fixed-height: false; } diff --git a/config/rofi/config-emoji.rasi b/config/rofi/config-emoji.rasi index 4a698957..04bc0215 100644 --- a/config/rofi/config-emoji.rasi +++ b/config/rofi/config-emoji.rasi @@ -24,7 +24,7 @@ entry { /* ---- Listview ---- */ listview { columns: 2; - lines: 8; + lines: 7; fixed-height: false; scrollbar: true; } diff --git a/config/rofi/config-keybinds.rasi b/config/rofi/config-keybinds.rasi index 2b19c271..9977bb9d 100644 --- a/config/rofi/config-keybinds.rasi +++ b/config/rofi/config-keybinds.rasi @@ -19,7 +19,7 @@ entry { /* ---- Listview ---- */ listview { columns: 2; - lines: 12; + lines: 8; fixed-height: false; scrollbar: true; } diff --git a/config/rofi/config-rofi-Beats-menu.rasi b/config/rofi/config-rofi-Beats-menu.rasi index c4691bba..67892681 100644 --- a/config/rofi/config-rofi-Beats-menu.rasi +++ b/config/rofi/config-rofi-Beats-menu.rasi @@ -12,13 +12,14 @@ mainbox { /* ---- Entry ---- */ entry { expand: false; - width: 27%; + width: 25%; placeholder: " 📻 Choose Music Source"; + horizontal-align: 0.5; } /* ---- Window ---- */ window { - width: 30%; + width: 28%; } /* ---- Listview ---- */ diff --git a/config/rofi/config-rofi-Beats.rasi b/config/rofi/config-rofi-Beats.rasi index a20e39a9..d3e6df3b 100644 --- a/config/rofi/config-rofi-Beats.rasi +++ b/config/rofi/config-rofi-Beats.rasi @@ -22,9 +22,10 @@ entry { /* ---- Listview ---- */ listview { columns: 2; - lines: 8; + lines: 7; fixed-height: false; margin: 10px; + scrollbar: true; } /* ---- Elements ---- */ diff --git a/config/rofi/config-rofi-theme.rasi b/config/rofi/config-rofi-theme.rasi index d660f1f9..285c026f 100644 --- a/config/rofi/config-rofi-theme.rasi +++ b/config/rofi/config-rofi-theme.rasi @@ -17,7 +17,7 @@ mainbox { /* ---- Listview ---- */ listview { columns: 2; - lines: 8; + lines: 7; fixed-height: false; scrollbar: true; } diff --git a/config/rofi/config-wallpaper-effect.rasi b/config/rofi/config-wallpaper-effect.rasi index 6a4dbfe5..67c0f1b2 100644 --- a/config/rofi/config-wallpaper-effect.rasi +++ b/config/rofi/config-wallpaper-effect.rasi @@ -24,7 +24,7 @@ window { /* ---- Listview ---- */ listview { columns: 2; - lines: 8; + lines: 7; fixed-height: false; scrollbar: true; } diff --git a/config/rofi/config-wallpaper.rasi b/config/rofi/config-wallpaper.rasi index eab47606..ca2789d8 100644 --- a/config/rofi/config-wallpaper.rasi +++ b/config/rofi/config-wallpaper.rasi @@ -21,26 +21,35 @@ mainbox { entry { expand: true; placeholder: " 🎞️ Search / Choose Wallpaper"; - horizontal-align: 0.0; + horizontal-align: 0.5; } /* ---- Listview ---- */ listview { - columns: 5; - lines: 3; + columns: 4; + lines: 2; + spacing: 10px; + padding: 10px; flow: horizontal; + fixed-width: false; + fixed-height: true; } /* ---- Element ---- */ element { orientation: vertical; + border-radius: 12px; + spacing: 20px; + padding: 6px; } element-icon { - size: 10%; + vertical-align: 0.5; } element-text { - vertical-align: 0.5; + vertical-align: 1.0; horizontal-align: 0.5; + padding: 0px; + margin: 0px; } diff --git a/config/rofi/config-waybar-layout.rasi b/config/rofi/config-waybar-layout.rasi index ae47f30d..be9d5ac5 100644 --- a/config/rofi/config-waybar-layout.rasi +++ b/config/rofi/config-waybar-layout.rasi @@ -28,7 +28,7 @@ entry { /* ---- Listview ---- */ listview { columns: 2; - lines: 9; + lines: 7; fixed-height: false; margin: 10px; scrollbar: true; diff --git a/config/rofi/config-waybar-style.rasi b/config/rofi/config-waybar-style.rasi index e0e6161a..67954bff 100644 --- a/config/rofi/config-waybar-style.rasi +++ b/config/rofi/config-waybar-style.rasi @@ -28,7 +28,7 @@ entry { /* ---- Listview ---- */ listview { columns: 2; - lines: 9; + lines: 7; fixed-height: false; margin: 10px; scrollbar: true; diff --git a/config/rofi/themes/KooL_LonerOrZ.rasi b/config/rofi/themes/KooL_LonerOrZ.rasi index ca8e30c9..bfa17b6b 100644 --- a/config/rofi/themes/KooL_LonerOrZ.rasi +++ b/config/rofi/themes/KooL_LonerOrZ.rasi @@ -1,6 +1,7 @@ /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ /* KooL Style LonerOrZ */ /* Submitted by https://github.com/lonerOrz */ +/* Edited by Ja */ @@ -109,7 +110,7 @@ scrollbar { border-radius: 10px; background-color: transparent; handle-color: @BDR; - handle-width: 5px ; + handle-width: 2px ; padding: 0; } diff --git a/config/rofi/themes/KooL_style-1.rasi b/config/rofi/themes/KooL_style-1.rasi index a80e6100..9391e491 100644 --- a/config/rofi/themes/KooL_style-1.rasi +++ b/config/rofi/themes/KooL_style-1.rasi @@ -148,11 +148,11 @@ button selected { /* ---- Scrollbar ---- */ scrollbar { - border: 1px; + border: 0px; border-radius: 10px; border-color: @color12; handle-color: @color11; - handle-width: 10px ; + handle-width: 2px ; padding: 0; } diff --git a/config/rofi/themes/KooL_style-10-Fancy-v2.rasi b/config/rofi/themes/KooL_style-10-Fancy-v2.rasi index 21c5c41e..0a1d1b21 100644 --- a/config/rofi/themes/KooL_style-10-Fancy-v2.rasi +++ b/config/rofi/themes/KooL_style-10-Fancy-v2.rasi @@ -69,11 +69,11 @@ listview { } /* ---- Scrollbar ---- */ scrollbar { - border: 1px; + border: 0px; border-radius: 10px; background-color: @blue; handle-color: @orange; - handle-width: 5px ; + handle-width: 2px ; padding: 0; } element { diff --git a/config/rofi/themes/KooL_style-10-Fancy.rasi b/config/rofi/themes/KooL_style-10-Fancy.rasi index b503f549..612d4246 100644 --- a/config/rofi/themes/KooL_style-10-Fancy.rasi +++ b/config/rofi/themes/KooL_style-10-Fancy.rasi @@ -222,11 +222,11 @@ element.alternate.active { } /* ---- Scrollbar ---- */ scrollbar { - border: 1px; + border: 0px; border-radius: 10px; background-color: @selected-normal-background; handle-color: @separatorcolor; - handle-width: 5px ; + handle-width: 2px ; padding: 0; } sidebar { diff --git a/config/rofi/themes/KooL_style-11-Win11-list-dark.rasi b/config/rofi/themes/KooL_style-11-Win11-list-dark.rasi index ed8544ba..1dcadb81 100644 --- a/config/rofi/themes/KooL_style-11-Win11-list-dark.rasi +++ b/config/rofi/themes/KooL_style-11-Win11-list-dark.rasi @@ -129,11 +129,11 @@ element-text { /* ---- Scrollbar ---- */ scrollbar { - border: 1px; + border: 0px; border-radius: 10px; background-color: inherit; handle-color: @accent; - handle-width: 5px ; + handle-width: 2px ; padding: 0; } diff --git a/config/rofi/themes/KooL_style-11-Win11-list-light.rasi b/config/rofi/themes/KooL_style-11-Win11-list-light.rasi index 1c2b8fa5..b722d44f 100644 --- a/config/rofi/themes/KooL_style-11-Win11-list-light.rasi +++ b/config/rofi/themes/KooL_style-11-Win11-list-light.rasi @@ -129,11 +129,11 @@ element-text { /* ---- Scrollbar ---- */ scrollbar { - border: 1px; + border: 0px; border-radius: 10px; background-color: inherit; handle-color: @accent; - handle-width: 5px ; + handle-width: 1px ; padding: 0; } diff --git a/config/rofi/themes/KooL_style-12-TOP-Docu.rasi b/config/rofi/themes/KooL_style-12-TOP-Docu.rasi index f70896f5..0a5e0575 100644 --- a/config/rofi/themes/KooL_style-12-TOP-Docu.rasi +++ b/config/rofi/themes/KooL_style-12-TOP-Docu.rasi @@ -84,7 +84,7 @@ window { location: north; width: 100%; background-color: black / 50%; - padding: 1em; + padding: 0.5em; border-color: black; border: 0em 0.2em 0.2em; chilren: [ inputbar, message, listview ]; @@ -109,7 +109,7 @@ element { border-color: darkgrey; background-color: grey; cursor: pointer; - padding: 4px; + padding: 2px; } element selected { @@ -133,7 +133,7 @@ scrollbar { border-radius: 10px; background-color: transparent; handle-color: darkgrey; - handle-width: 5px ; + handle-width: 2px ; padding: 0; } diff --git a/config/rofi/themes/KooL_style-2-Dark.rasi b/config/rofi/themes/KooL_style-2-Dark.rasi index 03ba7e30..7be669d8 100644 --- a/config/rofi/themes/KooL_style-2-Dark.rasi +++ b/config/rofi/themes/KooL_style-2-Dark.rasi @@ -53,7 +53,7 @@ mainbox { enabled: true; spacing: 20px; margin: 10px; - padding: 40px; + padding: 20px; border-radius: 12px; background-color: black/90%; children: [ "inputbar", "mode-switcher", "message", "listview" ]; @@ -110,7 +110,7 @@ scrollbar { border-radius: 10px; background-color: inherit; handle-color: #719DF9; - handle-width: 5px ; + handle-width: 2px ; padding: 0; } diff --git a/config/rofi/themes/KooL_style-2-Light.rasi b/config/rofi/themes/KooL_style-2-Light.rasi index 8b501645..551759db 100644 --- a/config/rofi/themes/KooL_style-2-Light.rasi +++ b/config/rofi/themes/KooL_style-2-Light.rasi @@ -53,7 +53,7 @@ mainbox { enabled: true; spacing: 20px; margin: 10px; - padding: 40px; + padding: 20px; border-radius: 12px; background-color: white/90%; children: [ "inputbar", "mode-switcher", "message", "listview" ]; @@ -110,7 +110,7 @@ scrollbar { border-radius: 10px; background-color: transparent; handle-color: gray/50%; - handle-width: 5px ; + handle-width: 2px ; padding: 0; } diff --git a/config/rofi/themes/KooL_style-3-FullScreen-v1.rasi b/config/rofi/themes/KooL_style-3-FullScreen-v1.rasi index 48e64a96..fc9c3dfb 100644 --- a/config/rofi/themes/KooL_style-3-FullScreen-v1.rasi +++ b/config/rofi/themes/KooL_style-3-FullScreen-v1.rasi @@ -161,10 +161,10 @@ button selected { /* ---- Scrollbar ---- */ scrollbar { - border: 0; + border: 0px; handle-color: @background-alt; handle-width: 2px ; - padding: 0; + padding: 0px; } /* ---- Elements ---- */ diff --git a/config/rofi/themes/KooL_style-3-Fullscreen-v2.rasi b/config/rofi/themes/KooL_style-3-Fullscreen-v2.rasi index f1d9c6c0..a26ac7ca 100644 --- a/config/rofi/themes/KooL_style-3-Fullscreen-v2.rasi +++ b/config/rofi/themes/KooL_style-3-Fullscreen-v2.rasi @@ -152,7 +152,7 @@ listview { cursor: "default"; } scrollbar { - handle-width: 5px ; + handle-width: 2px ; handle-color: @selected; border-radius: 0px; background-color: @background-alt; diff --git a/config/rofi/themes/KooL_style-4.rasi b/config/rofi/themes/KooL_style-4.rasi index db3b3fdb..b440189b 100644 --- a/config/rofi/themes/KooL_style-4.rasi +++ b/config/rofi/themes/KooL_style-4.rasi @@ -190,7 +190,7 @@ listview { cursor: "default"; } scrollbar { - handle-width: 5px ; + handle-width: 2px ; handle-color: @handle-color; border-radius: 10px; background-color: @alternate-background; diff --git a/config/rofi/themes/KooL_style-5.rasi b/config/rofi/themes/KooL_style-5.rasi index e943abde..d2a6c125 100644 --- a/config/rofi/themes/KooL_style-5.rasi +++ b/config/rofi/themes/KooL_style-5.rasi @@ -176,7 +176,7 @@ scrollbar { border-radius: 10px; background-color: transparent; handle-color: @active; - handle-width: 5px ; + handle-width: 2px ; padding: 0; } diff --git a/config/rofi/themes/KooL_style-6.rasi b/config/rofi/themes/KooL_style-6.rasi index 7fb90079..175f6ee9 100644 --- a/config/rofi/themes/KooL_style-6.rasi +++ b/config/rofi/themes/KooL_style-6.rasi @@ -127,7 +127,7 @@ scrollbar { border-radius: 10px; background-color: transparent; handle-color: @active; - handle-width: 5px ; + handle-width: 2px ; padding: 0; } /* ---- Dummy ---- */ diff --git a/config/rofi/themes/KooL_style-7.rasi b/config/rofi/themes/KooL_style-7.rasi index e70c2fb5..3b444baa 100644 --- a/config/rofi/themes/KooL_style-7.rasi +++ b/config/rofi/themes/KooL_style-7.rasi @@ -40,7 +40,7 @@ window { location: center; anchor: center; fullscreen: false; - width: 800px; + width: 40%; x-offset: 0px; y-offset: 0px; @@ -130,7 +130,7 @@ listview { cursor: "default"; } scrollbar { - handle-width: 5px ; + handle-width: 2px ; handle-color: @selected; border-radius: 0px; background-color: @background-alt; diff --git a/config/rofi/themes/KooL_style-8.rasi b/config/rofi/themes/KooL_style-8.rasi index 916e74b6..7a264ad7 100644 --- a/config/rofi/themes/KooL_style-8.rasi +++ b/config/rofi/themes/KooL_style-8.rasi @@ -101,7 +101,7 @@ listbox { /* ---- Listview ---- */ listview { - padding: 1.5em; + padding: 0.5em; spacing: 0.5em; enabled: true; columns: 2; @@ -142,10 +142,9 @@ button selected { /* ---- Scrollbar ---- */ scrollbar { - border: @border-width; - border-color: @color11; - handle-color: @color12; - handle-width: 10px ; + border: 0px; + handle-color: @color11; + handle-width: 2px ; padding: 0; } diff --git a/config/rofi/themes/KooL_style-9.rasi b/config/rofi/themes/KooL_style-9.rasi index 8a1fc972..c585329d 100644 --- a/config/rofi/themes/KooL_style-9.rasi +++ b/config/rofi/themes/KooL_style-9.rasi @@ -54,6 +54,13 @@ window { y-offset: 0; } +mainbox { + background-color: @BG; + children: [ inputbar, listview ]; + spacing: 15px; + padding: 15px; +} + prompt { enabled: true; padding: 8px; @@ -114,22 +121,16 @@ listview { dynamic: true; layout: vertical; scrollbar: true; -} - -mainbox { - background-color: @BG; - children: [ inputbar, listview ]; - spacing: 15px; - padding: 15px; + padding: 10px; } /* ---- Scrollbar ---- */ scrollbar { - border: 1px; + border: 0px; border-radius: 10px; border-color: @color12; handle-color: @color11; - handle-width: 10px ; + handle-width: 2px ; padding: 0; } diff --git a/config/rofi/wallust/colors-rofi.rasi b/config/rofi/wallust/colors-rofi.rasi index b54ab670..7fb97349 100644 --- a/config/rofi/wallust/colors-rofi.rasi +++ b/config/rofi/wallust/colors-rofi.rasi @@ -2,48 +2,48 @@ /* wallust template - colors-rofi */ * { -active-background: #718A90; -active-foreground: #ABF1E1; -normal-background: #212826; -normal-foreground: #ABF1E1; -urgent-background: #44AE9B; -urgent-foreground: #ABF1E1; +active-background: #784CA0; +active-foreground: #FAE8E1; +normal-background: #181519; +normal-foreground: #FAE8E1; +urgent-background: #CC659A; +urgent-foreground: #FAE8E1; -alternate-active-background: #78858E; -alternate-active-foreground: #ABF1E1; -alternate-normal-background: #212826; -alternate-normal-foreground: #ABF1E1; -alternate-urgent-background: #212826; -alternate-urgent-foreground: #ABF1E1; +alternate-active-background: #914B4B; +alternate-active-foreground: #FAE8E1; +alternate-normal-background: #181519; +alternate-normal-foreground: #FAE8E1; +alternate-urgent-background: #181519; +alternate-urgent-foreground: #FAE8E1; -selected-active-background: #44AE9B; -selected-active-foreground: #ABF1E1; -selected-normal-background: #44AE9B; -selected-normal-foreground: #ABF1E1; -selected-urgent-background: #718A90; -selected-urgent-foreground: #ABF1E1; +selected-active-background: #CC659A; +selected-active-foreground: #FAE8E1; +selected-normal-background: #CC659A; +selected-normal-foreground: #FAE8E1; +selected-urgent-background: #784CA0; +selected-urgent-foreground: #FAE8E1; -background-color: #212826; +background-color: #181519; background: rgba(0,0,0,0.7); -foreground: #ABF1E1; -border-color: #718A90; +foreground: #FAE8E1; +border-color: #784CA0; -color0: #464D4C; -color1: #02211D; -color2: #02613F; -color3: #5A646A; -color4: #55686C; -color5: #338375; -color6: #0CA27F; -color7: #7FE3CC; -color8: #599F8E; -color9: #022C27; -color10: #028154; -color11: #78858E; -color12: #718A90; -color13: #44AE9B; -color14: #10D8A9; -color15: #7FE3CC; +color0: #3F3C40; +color1: #1A1022; +color2: #492E61; +color3: #6D3838; +color4: #5A3978; +color5: #994C74; +color6: #B58E80; +color7: #F0D6CC; +color8: #A8958F; +color9: #23152D; +color10: #613D81; +color11: #914B4B; +color12: #784CA0; +color13: #CC659A; +color14: #F2BDAA; +color15: #F0D6CC; } diff --git a/config/waybar/configs/[TOP] Simpliest b/config/waybar/configs/[TOP] Simpliest new file mode 100644 index 00000000..14e0f1e0 --- /dev/null +++ b/config/waybar/configs/[TOP] Simpliest @@ -0,0 +1,36 @@ +/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +// ### TOP Simpliests ## // + +{ +"include": [ + "$HOME/.config/waybar/Modules", + "$HOME/.config/waybar/ModulesWorkspaces", + "$HOME/.config/waybar/ModulesCustom", + "$HOME/.config/waybar/ModulesGroups", + ], +"layer": "top", +"position": "top", +//"mode": "dock", +"exclusive": true, +"passthrough": false, +"gtk-layer-shell": true, +"margin-left": 6, +"margin-right": 6, +"margin-top": 2, + +"modules-left": [ + "hyprland/workspaces", + "tray", + "mpris", + ], + +"modules-center": [ + "hyprland/window", + ], + +"modules-right": [ + "idle_inhibitor", + "group/notify", + ], +} + |
