aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJa.KooLit <ejhay.games@gmail.com>2023-11-16 15:10:32 +0900
committerJa.KooLit <ejhay.games@gmail.com>2023-11-16 15:10:32 +0900
commitc4d6938ca6d225f15f2b04924cafaa07062b54b4 (patch)
tree3a793cf352ddcfc46f1422d78b69daf3617639ab
parent0f25fb086a29ff1db0f11e7052687f4c808b0456 (diff)
waybar changes on name, style and script
-rwxr-xr-xconfig/hypr/scripts/WaybarLayout.sh29
-rwxr-xr-xconfig/hypr/scripts/WaybarStyles.sh89
-rw-r--r--config/rofi/config-waybar-layout.rasi240
-rw-r--r--config/rofi/config-waybar-style.rasi240
-rw-r--r--config/rofi/resolution/1080p/config-waybar-layout.rasi (renamed from config/rofi/config-waybar.rasi)2
-rw-r--r--config/rofi/resolution/1080p/config-waybar-style.rasi (renamed from config/rofi/resolution/1080p/config-waybar.rasi)2
-rw-r--r--config/waybar/configs/Bottom & Left (renamed from config/waybar/configs/Bottom-Left)0
-rw-r--r--config/waybar/configs/Bottom & Right (renamed from config/waybar/configs/Bottom-Right)0
-rw-r--r--config/waybar/configs/Camellia [Bottom] (renamed from config/waybar/configs/Camellia)0
-rw-r--r--config/waybar/configs/Chrysanthemum [TOP] (renamed from config/waybar/configs/Chrysanthemum)0
-rw-r--r--config/waybar/configs/Default [Bottom] (renamed from config/waybar/configs/default-Bottom)12
-rw-r--r--config/waybar/configs/Default [TOP] (renamed from config/waybar/configs/default)12
-rw-r--r--config/waybar/configs/Gardenia [Bottom] (renamed from config/waybar/configs/Gardenia)0
-rw-r--r--config/waybar/configs/Peony [TOP] (renamed from config/waybar/configs/Peony)0
-rw-r--r--config/waybar/configs/Simple-L [TOP] (renamed from config/waybar/configs/simple-long)0
-rw-r--r--config/waybar/configs/Simple-S [TOP] (renamed from config/waybar/configs/simple-short)0
-rw-r--r--config/waybar/configs/Top & Bottom (renamed from config/waybar/configs/Top-&-Bottom)0
-rw-r--r--config/waybar/configs/Top & Left (renamed from config/waybar/configs/Top-Left)0
-rw-r--r--config/waybar/configs/Top & Right (renamed from config/waybar/configs/Top-Right)0
-rw-r--r--config/waybar/style/Black & White.css (renamed from config/waybar/style/Black-&-White.css)0
-rw-r--r--config/waybar/style/Colored (Bordered).css (renamed from config/waybar/style/colors-border.css)0
-rw-r--r--config/waybar/style/Colored (Lined).css (renamed from config/waybar/style/colors-line.css)0
-rw-r--r--config/waybar/style/Colored.css (renamed from config/waybar/style/colors.css)0
-rw-r--r--config/waybar/style/Colorful.css (renamed from config/waybar/style/colorful.css)0
-rw-r--r--config/waybar/style/Dark.css (renamed from config/waybar/style/dark.css)0
-rw-r--r--config/waybar/style/Golden Noir.css (renamed from config/waybar/style/Golden-Noir.css)0
-rw-r--r--config/waybar/style/Light.css (renamed from config/waybar/style/light.css)0
-rw-r--r--config/waybar/style/Pywal.css (renamed from config/waybar/style/pywal.css)0
-rw-r--r--config/waybar/style/Simple Pink.css (renamed from config/waybar/style/Simple-Pink.css)0
-rwxr-xr-xcopy.sh2
30 files changed, 545 insertions, 83 deletions
diff --git a/config/hypr/scripts/WaybarLayout.sh b/config/hypr/scripts/WaybarLayout.sh
index 15d9195f..dd5fc387 100755
--- a/config/hypr/scripts/WaybarLayout.sh
+++ b/config/hypr/scripts/WaybarLayout.sh
@@ -4,24 +4,15 @@ CONFIG="$HOME/.config/waybar/configs"
WCONFIG="$HOME/.config/waybar/config"
menu() {
- cat <<EOF
-default
-default-Bottom
-Peony
-Chrysanthemum
-Gardenia
-Camellia
-simple-long
-simple-short
-Top-&-Bottom
-Left
-Right
-Top-Left
-Top-Right
-Bottom-Left
-Bottom-Right
-no panel
-EOF
+ # List only files (excluding directories) in the directory and sort alphabetically
+ options=()
+ while IFS= read -r file; do
+ if [ -f "$CONFIG/$file" ]; then
+ options+=("$file")
+ fi
+ done < <(find "$CONFIG" -maxdepth 1 -type f -exec basename {} \; | sort)
+
+ printf '%s\n' "${options[@]}"
}
apply_config() {
@@ -29,7 +20,7 @@ apply_config() {
}
main() {
- choice=$(menu | rofi -dmenu -config ~/.config/rofi/config-waybar.rasi)
+ choice=$(menu | rofi -dmenu -config ~/.config/rofi/config-waybar-layout.rasi)
if [[ -z "$choice" ]]; then
echo "No option selected. Exiting."
diff --git a/config/hypr/scripts/WaybarStyles.sh b/config/hypr/scripts/WaybarStyles.sh
index a861e620..de3a54dc 100755
--- a/config/hypr/scripts/WaybarStyles.sh
+++ b/config/hypr/scripts/WaybarStyles.sh
@@ -1,58 +1,49 @@
#!/bin/bash
-# ACTUAL THEME
-THEMEIS=$(realpath ~/.config/waybar/style.css | sed 's/.*-\(.*\)\.css/\1/')
+CONFIG="$HOME/.config/waybar/style"
+WCONFIG="$HOME/.config/waybar/style.css"
-# Array for the styles
-STYLES=(
-"Purpl"
-"Crimson"
-"Golden-Noir"
-"Simple-Pink"
-"pywal"
-"dark"
-"light"
-"Black-&-White"
-"colors"
-"colors-border"
-"colors-line"
-"colorful"
-"Catppuccin-Mocha"
-"Catppuccin-Latte"
-"Transparent"
-)
+menu() {
+ # List only files (excluding directories) in the directory and sort alphabetically
+ options=()
+ while IFS= read -r file; do
+ if [ -f "$CONFIG/$file" ]; then
+ options+=("$(basename "$file" .css)")
+ fi
+ done < <(find "$CONFIG" -maxdepth 1 -type f -name '*.css' -exec basename {} \; | sort)
+
+ printf '%s\n' "${options[@]}"
+}
-# Build ROFI
-SELECTED_STYLE=$(printf "%s\n" "${STYLES[@]}" | rofi -dmenu -config ~/.config/rofi/config-waybar.rasi "${#STYLES[@]}")
+apply_style() {
+ ln -sf "$CONFIG/$1.css" "$WCONFIG"
+}
-# Check if rofi is already running
-if pidof rofi > /dev/null; then
- pkill rofi
- exit 0
-fi
+main() {
+ choice=$(menu | rofi -dmenu -config ~/.config/rofi/config-waybar-style.rasi)
-# Verify the selected theme
-if [[ " ${STYLES[@]} " =~ " $SELECTED_STYLE " ]]; then
- SWITCHTO="${SELECTED_STYLE}"
-else
- echo "Invalid selection"
- exit 1
-fi
+ if [[ -z "$choice" ]]; then
+ echo "No option selected. Exiting."
+ exit 0
+ fi
-# APPLY THEME
-THEMEFILE="$HOME/.config/waybar/style/${SWITCHTO}.css"
-if [ -f "$THEMEFILE" ]; then
- ln -sf "$THEMEFILE" "$HOME/.config/waybar/style.css"
-else
- echo "Error: $THEMEFILE not found"
- exit 1
-fi
+ apply_style "$choice"
-# Restart relevant processes
-for process in waybar mako dunst; do
- if pidof "$process" > /dev/null; then
- pkill "$process"
- fi
-done
+ # Restart relevant processes
+ for process in waybar mako dunst; do
+ if pgrep -x "$process" >/dev/null; then
+ pkill "$process"
+ fi
+ done
+
+ # Launch Refresh.sh in the background
+ ~/.config/hypr/scripts/Refresh.sh &
+}
+
+# Check if rofi is already running
+if pgrep -x "rofi" >/dev/null; then
+ pkill rofi
+ exit 0
+fi
-exec ~/.config/hypr/scripts/Refresh.sh
+main
diff --git a/config/rofi/config-waybar-layout.rasi b/config/rofi/config-waybar-layout.rasi
new file mode 100644
index 00000000..b9535701
--- /dev/null
+++ b/config/rofi/config-waybar-layout.rasi
@@ -0,0 +1,240 @@
+/* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */
+
+/* ---- Configuration ---- */
+configuration {
+ modi: "drun,run";
+ font: "Fira Code SemiBold 14";
+ show-icons: true;
+ display-drun: "๎ฏ†";
+ display-run: "๏„ ";
+ display-filebrowser: "๏ป";
+ display-window: "๏‹";
+ drun-display-format: "{name}";
+ hover-select: true;
+ me-select-entry: "MouseSecondary";
+ me-accept-entry: "MousePrimary";
+ window-format: "{w} ยท {c} ยท {t}";
+
+}
+
+/* ---- Load pywal colors (custom wal template) ---- */
+@import "~/.config/rofi/pywal-color/pywal-theme.rasi"
+
+/* ---- Window ---- */
+window {
+ width: 50%;
+ height: 50%;
+ x-offset: 0px;
+ y-offset: 0px;
+ spacing: 0px;
+ padding: 0px;
+ margin: 0px;
+ color: transparent;
+ border: 2px;
+ border-color: @background;
+ cursor: "default";
+ transparency: "real";
+ location: center;
+ anchor: center;
+ fullscreen: false;
+ enabled: true;
+ border-radius: 10px;
+}
+
+/* ---- Mainbox ---- */
+mainbox {
+ enabled: true;
+ orientation: horizontal;
+ spacing: 0px;
+ margin: 0px;
+ background-color: transparent;
+ background-image: url("~/.config/rofi/.current_wallpaper", height);
+ children: [ "imagebox", "listbox" ];
+}
+
+/* ---- Imagebox ---- */
+imagebox {
+ padding: 18px;
+ background-color: transparent;
+ orientation: vertical;
+ children: [ "inputbar", "dummy", "mode-switcher" ];
+}
+
+/* ---- Listbox ---- */
+listbox {
+ spacing: 20px;
+ background-color: transparent;
+ orientation: vertical;
+ children: [ "message", "listview" ];
+}
+/* ---- Dummy ---- */
+dummy {
+ background-color: transparent;
+}
+
+/* ---- Inputbar ---- */
+inputbar {
+ enabled: true;
+ text-color: @foreground;
+ spacing: 10px;
+ padding: 15px;
+ border-radius: 10px;
+ border-color: @foreground;
+ children: [ "textbox-prompt-colon", "entry" ];
+}
+
+textbox-prompt-colon {
+ enabled: true;
+ expand: false;
+ str: "๐Ÿ”Ž ";
+ text-color: inherit;
+}
+
+entry {
+ enabled: true;
+ background-color: transparent;
+ text-color: inherit;
+ cursor: text;
+ placeholder: "Choose Waybar Layout";
+ placeholder-color: inherit;
+}
+
+/* ---- Mode Switcher ---- */
+mode-switcher{
+ enabled: true;
+ spacing: 20px;
+ background-color: transparent;
+ text-color: @foreground;
+}
+
+button {
+ padding: 10px;
+ border-radius: 10px;
+ background-color: @background;
+ text-color: inherit;
+ cursor: pointer;
+ border: 0px;
+}
+
+button selected {
+ background-color: @selected-normal-background;
+ text-color: @foreground;
+}
+
+/* ---- Listview ---- */
+listview {
+ enabled: true;
+ columns: 1;
+ lines: 10;
+ cycle: true;
+ dynamic: true;
+ scrollbar: true;
+ layout: vertical;
+ reverse: false;
+ fixed-height: true;
+ fixed-columns: true;
+ spacing: 0px;
+ padding: 10px;
+ margin: 0px;
+ border-radius: 10px;
+ border: 0px;
+ background-image: url("~/.config/rofi/.current_wallpaper", height);
+}
+
+/* ---- Element ---- */
+element {
+ enabled: true;
+ padding: 5px;
+ margin: 2px;
+ cursor: pointer;
+ background-color: @background;
+ border-radius: 10px;
+ border: 0px;
+}
+
+element normal.normal {
+ background-color: inherit;
+ text-color: @foreground;
+}
+
+element normal.urgent {
+ background-color: inherit;
+ text-color: @foreground;
+}
+
+element normal.active {
+ background-color: inherit;
+ text-color: @foreground;
+}
+
+element selected.normal {
+ background-color: @selected-normal-background;
+ text-color: @foreground;
+}
+
+element selected.urgent {
+ background-color: inherit;
+ text-color: @foreground;
+}
+
+element selected.active {
+ background-color: inherit;
+ text-color: @foreground;
+}
+
+element alternate.normal {
+ background-color: inherit;
+ text-color: @foreground;
+}
+
+element alternate.urgent {
+ background-color: inherit;
+ text-color: @foreground;
+}
+
+element alternate.active {
+ background-color: inherit;
+ text-color: @foreground;
+}
+
+element-icon {
+ background-color: transparent;
+ text-color: inherit;
+ size: 32px;
+ cursor: inherit;
+}
+
+element-text {
+ background-color: transparent;
+ text-color: inherit;
+ cursor: inherit;
+ vertical-align: 0.5;
+ horizontal-align: 0.0;
+}
+
+/*****----- Message -----*****/
+message {
+ background-color: transparent;
+ border: 0px;
+ margin: 20px 0px 0px 0px;
+ padding: 0px;
+ spacing: 0px;
+ border-radius: 10px;
+}
+
+textbox {
+ padding: 15px;
+ margin: 0px;
+ border-radius: 0px;
+ background-color: @background;
+ text-color: @foreground;
+ vertical-align: 0.5;
+ horizontal-align: 0.0;
+}
+
+error-message {
+ padding: 15px;
+ border-radius: 20px;
+ background-color: @background;
+ text-color: @foreground;
+}
diff --git a/config/rofi/config-waybar-style.rasi b/config/rofi/config-waybar-style.rasi
new file mode 100644
index 00000000..39415945
--- /dev/null
+++ b/config/rofi/config-waybar-style.rasi
@@ -0,0 +1,240 @@
+/* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */
+
+/* ---- Configuration ---- */
+configuration {
+ modi: "drun,run";
+ font: "Fira Code SemiBold 14";
+ show-icons: true;
+ display-drun: "๎ฏ†";
+ display-run: "๏„ ";
+ display-filebrowser: "๏ป";
+ display-window: "๏‹";
+ drun-display-format: "{name}";
+ hover-select: true;
+ me-select-entry: "MouseSecondary";
+ me-accept-entry: "MousePrimary";
+ window-format: "{w} ยท {c} ยท {t}";
+
+}
+
+/* ---- Load pywal colors (custom wal template) ---- */
+@import "~/.config/rofi/pywal-color/pywal-theme.rasi"
+
+/* ---- Window ---- */
+window {
+ width: 50%;
+ height: 50%;
+ x-offset: 0px;
+ y-offset: 0px;
+ spacing: 0px;
+ padding: 0px;
+ margin: 0px;
+ color: transparent;
+ border: 2px;
+ border-color: @background;
+ cursor: "default";
+ transparency: "real";
+ location: center;
+ anchor: center;
+ fullscreen: false;
+ enabled: true;
+ border-radius: 10px;
+}
+
+/* ---- Mainbox ---- */
+mainbox {
+ enabled: true;
+ orientation: horizontal;
+ spacing: 0px;
+ margin: 0px;
+ background-color: transparent;
+ background-image: url("~/.config/rofi/.current_wallpaper", height);
+ children: [ "imagebox", "listbox" ];
+}
+
+/* ---- Imagebox ---- */
+imagebox {
+ padding: 18px;
+ background-color: transparent;
+ orientation: vertical;
+ children: [ "inputbar", "dummy", "mode-switcher" ];
+}
+
+/* ---- Listbox ---- */
+listbox {
+ spacing: 20px;
+ background-color: transparent;
+ orientation: vertical;
+ children: [ "message", "listview" ];
+}
+/* ---- Dummy ---- */
+dummy {
+ background-color: transparent;
+}
+
+/* ---- Inputbar ---- */
+inputbar {
+ enabled: true;
+ text-color: @foreground;
+ spacing: 10px;
+ padding: 15px;
+ border-radius: 10px;
+ border-color: @foreground;
+ children: [ "textbox-prompt-colon", "entry" ];
+}
+
+textbox-prompt-colon {
+ enabled: true;
+ expand: false;
+ str: "๐Ÿ”Ž ";
+ text-color: inherit;
+}
+
+entry {
+ enabled: true;
+ background-color: transparent;
+ text-color: inherit;
+ cursor: text;
+ placeholder: "Choose Waybar Syles";
+ placeholder-color: inherit;
+}
+
+/* ---- Mode Switcher ---- */
+mode-switcher{
+ enabled: true;
+ spacing: 20px;
+ background-color: transparent;
+ text-color: @foreground;
+}
+
+button {
+ padding: 10px;
+ border-radius: 10px;
+ background-color: @background;
+ text-color: inherit;
+ cursor: pointer;
+ border: 0px;
+}
+
+button selected {
+ background-color: @selected-normal-background;
+ text-color: @foreground;
+}
+
+/* ---- Listview ---- */
+listview {
+ enabled: true;
+ columns: 1;
+ lines: 10;
+ cycle: true;
+ dynamic: true;
+ scrollbar: true;
+ layout: vertical;
+ reverse: false;
+ fixed-height: true;
+ fixed-columns: true;
+ spacing: 0px;
+ padding: 10px;
+ margin: 0px;
+ border-radius: 10px;
+ border: 0px;
+ background-image: url("~/.config/rofi/.current_wallpaper", height);
+}
+
+/* ---- Element ---- */
+element {
+ enabled: true;
+ padding: 5px;
+ margin: 2px;
+ cursor: pointer;
+ background-color: @background;
+ border-radius: 10px;
+ border: 0px;
+}
+
+element normal.normal {
+ background-color: inherit;
+ text-color: @foreground;
+}
+
+element normal.urgent {
+ background-color: inherit;
+ text-color: @foreground;
+}
+
+element normal.active {
+ background-color: inherit;
+ text-color: @foreground;
+}
+
+element selected.normal {
+ background-color: @selected-normal-background;
+ text-color: @foreground;
+}
+
+element selected.urgent {
+ background-color: inherit;
+ text-color: @foreground;
+}
+
+element selected.active {
+ background-color: inherit;
+ text-color: @foreground;
+}
+
+element alternate.normal {
+ background-color: inherit;
+ text-color: @foreground;
+}
+
+element alternate.urgent {
+ background-color: inherit;
+ text-color: @foreground;
+}
+
+element alternate.active {
+ background-color: inherit;
+ text-color: @foreground;
+}
+
+element-icon {
+ background-color: transparent;
+ text-color: inherit;
+ size: 32px;
+ cursor: inherit;
+}
+
+element-text {
+ background-color: transparent;
+ text-color: inherit;
+ cursor: inherit;
+ vertical-align: 0.5;
+ horizontal-align: 0.0;
+}
+
+/*****----- Message -----*****/
+message {
+ background-color: transparent;
+ border: 0px;
+ margin: 20px 0px 0px 0px;
+ padding: 0px;
+ spacing: 0px;
+ border-radius: 10px;
+}
+
+textbox {
+ padding: 15px;
+ margin: 0px;
+ border-radius: 0px;
+ background-color: @background;
+ text-color: @foreground;
+ vertical-align: 0.5;
+ horizontal-align: 0.0;
+}
+
+error-message {
+ padding: 15px;
+ border-radius: 20px;
+ background-color: @background;
+ text-color: @foreground;
+}
diff --git a/config/rofi/config-waybar.rasi b/config/rofi/resolution/1080p/config-waybar-layout.rasi
index 799c8c30..10f619f5 100644
--- a/config/rofi/config-waybar.rasi
+++ b/config/rofi/resolution/1080p/config-waybar-layout.rasi
@@ -95,7 +95,7 @@ entry {
background-color: transparent;
text-color: inherit;
cursor: text;
- placeholder: "Choose Waybar Styles or Layouts";
+ placeholder: "Choose Waybar Layout";
placeholder-color: inherit;
}
diff --git a/config/rofi/resolution/1080p/config-waybar.rasi b/config/rofi/resolution/1080p/config-waybar-style.rasi
index 799c8c30..545d9b64 100644
--- a/config/rofi/resolution/1080p/config-waybar.rasi
+++ b/config/rofi/resolution/1080p/config-waybar-style.rasi
@@ -95,7 +95,7 @@ entry {
background-color: transparent;
text-color: inherit;
cursor: text;
- placeholder: "Choose Waybar Styles or Layouts";
+ placeholder: "Choose Waybar Syles";
placeholder-color: inherit;
}
diff --git a/config/waybar/configs/Bottom-Left b/config/waybar/configs/Bottom & Left
index da0bc68f..da0bc68f 100644
--- a/config/waybar/configs/Bottom-Left
+++ b/config/waybar/configs/Bottom & Left
diff --git a/config/waybar/configs/Bottom-Right b/config/waybar/configs/Bottom & Right
index a715706b..a715706b 100644
--- a/config/waybar/configs/Bottom-Right
+++ b/config/waybar/configs/Bottom & Right
diff --git a/config/waybar/configs/Camellia b/config/waybar/configs/Camellia [Bottom]
index aa5a41a9..aa5a41a9 100644
--- a/config/waybar/configs/Camellia
+++ b/config/waybar/configs/Camellia [Bottom]
diff --git a/config/waybar/configs/Chrysanthemum b/config/waybar/configs/Chrysanthemum [TOP]
index 598a666f..598a666f 100644
--- a/config/waybar/configs/Chrysanthemum
+++ b/config/waybar/configs/Chrysanthemum [TOP]
diff --git a/config/waybar/configs/default-Bottom b/config/waybar/configs/Default [Bottom]
index 512995df..fc2a646b 100644
--- a/config/waybar/configs/default-Bottom
+++ b/config/waybar/configs/Default [Bottom]
@@ -37,17 +37,17 @@
"custom/light_dark",
"custom/separator#dot-line",
"custom/lock",
- //],
- "custom/separator#dot-line",
- "custom/keybinds",
- ],
+ ],
+ //"custom/separator#dot-line",
+ //"custom/keybinds",
+ //],
"modules-right": [
//"hyprland/window",
"tray",
"custom/separator#dot-line",
- "bluetooth",
- "custom/separator#dot-line",
+ //"bluetooth",
+ //"custom/separator#dot-line",
//"network",
//"custom/separator#dot-line",
"battery",
diff --git a/config/waybar/configs/default b/config/waybar/configs/Default [TOP]
index 2f8678ff..39b13d83 100644
--- a/config/waybar/configs/default
+++ b/config/waybar/configs/Default [TOP]
@@ -37,17 +37,17 @@
"custom/light_dark",
"custom/separator#dot-line",
"custom/lock",
- //],
- "custom/separator#dot-line",
- "custom/keybinds",
- ],
+ ],
+ //"custom/separator#dot-line",
+ //"custom/keybinds",
+ //],
"modules-right": [
//"hyprland/window",
"tray",
"custom/separator#dot-line",
- "bluetooth",
- "custom/separator#dot-line",
+ //"bluetooth",
+ //"custom/separator#dot-line",
//"network",
//"custom/separator#dot-line",
"battery",
diff --git a/config/waybar/configs/Gardenia b/config/waybar/configs/Gardenia [Bottom]
index 0adec1c4..0adec1c4 100644
--- a/config/waybar/configs/Gardenia
+++ b/config/waybar/configs/Gardenia [Bottom]
diff --git a/config/waybar/configs/Peony b/config/waybar/configs/Peony [TOP]
index 0c490202..0c490202 100644
--- a/config/waybar/configs/Peony
+++ b/config/waybar/configs/Peony [TOP]
diff --git a/config/waybar/configs/simple-long b/config/waybar/configs/Simple-L [TOP]
index d94ecdac..d94ecdac 100644
--- a/config/waybar/configs/simple-long
+++ b/config/waybar/configs/Simple-L [TOP]
diff --git a/config/waybar/configs/simple-short b/config/waybar/configs/Simple-S [TOP]
index ebeb9823..ebeb9823 100644
--- a/config/waybar/configs/simple-short
+++ b/config/waybar/configs/Simple-S [TOP]
diff --git a/config/waybar/configs/Top-&-Bottom b/config/waybar/configs/Top & Bottom
index ae9c546a..ae9c546a 100644
--- a/config/waybar/configs/Top-&-Bottom
+++ b/config/waybar/configs/Top & Bottom
diff --git a/config/waybar/configs/Top-Left b/config/waybar/configs/Top & Left
index 97e356f0..97e356f0 100644
--- a/config/waybar/configs/Top-Left
+++ b/config/waybar/configs/Top & Left
diff --git a/config/waybar/configs/Top-Right b/config/waybar/configs/Top & Right
index 1be48977..1be48977 100644
--- a/config/waybar/configs/Top-Right
+++ b/config/waybar/configs/Top & Right
diff --git a/config/waybar/style/Black-&-White.css b/config/waybar/style/Black & White.css
index 30e536c1..30e536c1 100644
--- a/config/waybar/style/Black-&-White.css
+++ b/config/waybar/style/Black & White.css
diff --git a/config/waybar/style/colors-border.css b/config/waybar/style/Colored (Bordered).css
index 4aaef8ef..4aaef8ef 100644
--- a/config/waybar/style/colors-border.css
+++ b/config/waybar/style/Colored (Bordered).css
diff --git a/config/waybar/style/colors-line.css b/config/waybar/style/Colored (Lined).css
index c5e11e8e..c5e11e8e 100644
--- a/config/waybar/style/colors-line.css
+++ b/config/waybar/style/Colored (Lined).css
diff --git a/config/waybar/style/colors.css b/config/waybar/style/Colored.css
index 2bae4fb8..2bae4fb8 100644
--- a/config/waybar/style/colors.css
+++ b/config/waybar/style/Colored.css
diff --git a/config/waybar/style/colorful.css b/config/waybar/style/Colorful.css
index 0fab7642..0fab7642 100644
--- a/config/waybar/style/colorful.css
+++ b/config/waybar/style/Colorful.css
diff --git a/config/waybar/style/dark.css b/config/waybar/style/Dark.css
index 3015b7e9..3015b7e9 100644
--- a/config/waybar/style/dark.css
+++ b/config/waybar/style/Dark.css
diff --git a/config/waybar/style/Golden-Noir.css b/config/waybar/style/Golden Noir.css
index 42dfe7b2..42dfe7b2 100644
--- a/config/waybar/style/Golden-Noir.css
+++ b/config/waybar/style/Golden Noir.css
diff --git a/config/waybar/style/light.css b/config/waybar/style/Light.css
index 1ec890bf..1ec890bf 100644
--- a/config/waybar/style/light.css
+++ b/config/waybar/style/Light.css
diff --git a/config/waybar/style/pywal.css b/config/waybar/style/Pywal.css
index 59804921..59804921 100644
--- a/config/waybar/style/pywal.css
+++ b/config/waybar/style/Pywal.css
diff --git a/config/waybar/style/Simple-Pink.css b/config/waybar/style/Simple Pink.css
index 75e45b98..75e45b98 100644
--- a/config/waybar/style/Simple-Pink.css
+++ b/config/waybar/style/Simple Pink.css
diff --git a/copy.sh b/copy.sh
index 12aeb313..85685595 100755
--- a/copy.sh
+++ b/copy.sh
@@ -160,7 +160,7 @@ cp -r wallpapers ~/Pictures/ && { echo "${OK}Copy completed!"; } || { echo "${ER
# Initial Symlinks to avoid errors
# symlinks for waybar
-ln -sf "$HOME/.config/waybar/configs/default" "$HOME/.config/waybar/config" && \
+ln -sf "$HOME/.config/waybar/configs/Default [TOP]" "$HOME/.config/waybar/config" && \
ln -sf "$HOME/.config/waybar/style/pywal.css" "$HOME/.config/waybar/style.css" && \
# symlinks for dunst
send patches to the email below
yukais@pinapelz.com
include the subject [PATCH repo_name]
pinapelz.com
homepage