diff --git a/.version/name b/.version/name index f7025a3..251e37d 100644 --- a/.version/name +++ b/.version/name @@ -1 +1 @@ -2.8RC1 \ No newline at end of file +2.8RC2 \ No newline at end of file diff --git a/CHANGELOG b/CHANGELOG index 3003cac..099e45d 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -8,6 +8,7 @@ Hyprland: - New waybar idle-inhibator icon - New waybar theme ml4w-minimal - New window animation variation animation-moving.conf +- New AI icon to open ChatGPT Version 2.7.2 https://gitlab.com/stephan-raabe/dotfiles/-/releases/2.7.2 diff --git a/README.md b/README.md index 19dadc0..ea1bd4f 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# ML4W dotfiles 2.8RC1 +# ML4W dotfiles 2.8RC2 This is my configuration of Hyprland (Wayland) and Qtile (X11) for Arch Linux based distributions. This package includes an installation script to install and setup the required components. diff --git a/waybar/modules.json b/waybar/modules.json index 518e63b..5d1779f 100644 --- a/waybar/modules.json +++ b/waybar/modules.json @@ -127,7 +127,7 @@ // Filemanager Launcher "custom/filemanager": { - "format": "", + "format": "", "on-click": "~/dotfiles/.settings/filemanager.sh", "tooltip": false }, @@ -148,14 +148,14 @@ // Browser Launcher "custom/browser": { - "format": "", + "format": "", "on-click": "~/dotfiles/.settings/browser.sh", "tooltip": false }, // ChatGPT Launcher "custom/chatgpt": { - "format": "", + "format": " ", "on-click": "chromium --app=https://chat.openai.com", "tooltip": false }, @@ -274,13 +274,11 @@ // Group Settings "group/settings": { - "orientation": "inherit", - "drawer": { - "transition-duration": 300, - "children-class": "not-memory", - "transition-left-to-right": false - }, + "orientation": "horizontal", "modules": [ + // START CHATGPT TOOGLE + "custom/chatgpt", + // END CHATGPT TOOGLE "custom/settings", "custom/waybarthemes", "custom/wallpaper" @@ -291,11 +289,8 @@ "group/quicklinks": { "orientation": "horizontal", "modules": [ - // START CHATGPT TOOGLE - "custom/chatgpt", - // END CHATGPT TOOGLE + "custom/browser", "custom/filemanager", - "custom/browser" ] }, diff --git a/waybar/themes/assets/ai-icon-20.png b/waybar/themes/assets/ai-icon-20.png new file mode 100644 index 0000000..a070dd4 Binary files /dev/null and b/waybar/themes/assets/ai-icon-20.png differ diff --git a/waybar/themes/assets/ai-icon.png b/waybar/themes/assets/ai-icon.png new file mode 100644 index 0000000..398379b Binary files /dev/null and b/waybar/themes/assets/ai-icon.png differ diff --git a/waybar/themes/ml4w-blur-bottom/config b/waybar/themes/ml4w-blur-bottom/config index 2074112..ed6fac5 100644 --- a/waybar/themes/ml4w-blur-bottom/config +++ b/waybar/themes/ml4w-blur-bottom/config @@ -32,9 +32,7 @@ // Modules Left "modules-left": [ "custom/appmenu", - "custom/settings", - "custom/waybarthemes", - "custom/wallpaper", + "group/settings", // START TASK TOOGLE "wlr/taskbar", // END TASK TOOGLE diff --git a/waybar/themes/ml4w-blur/config b/waybar/themes/ml4w-blur/config index 838c2b4..e064d8f 100644 --- a/waybar/themes/ml4w-blur/config +++ b/waybar/themes/ml4w-blur/config @@ -32,9 +32,7 @@ // Modules Left "modules-left": [ "custom/appmenu", - "custom/settings", - "custom/waybarthemes", - "custom/wallpaper", + "group/settings", // START TASK TOOGLE "wlr/taskbar", // END TASK TOOGLE diff --git a/waybar/themes/ml4w-blur/style.css b/waybar/themes/ml4w-blur/style.css index da18725..8fa90c8 100644 --- a/waybar/themes/ml4w-blur/style.css +++ b/waybar/themes/ml4w-blur/style.css @@ -191,6 +191,14 @@ window#waybar.empty #window { padding-right: 24px; } +#custom-chatgpt { + margin-right: 15px; + background-image: url("../assets/ai-icon-20.png"); + background-repeat: no-repeat; + background-position: center; + padding-right: 24px; +} + /* ----------------------------------------------------- * Idle Inhibator * ----------------------------------------------------- */ diff --git a/waybar/themes/ml4w-bottom/config b/waybar/themes/ml4w-bottom/config index e30d232..a2593ef 100644 --- a/waybar/themes/ml4w-bottom/config +++ b/waybar/themes/ml4w-bottom/config @@ -32,9 +32,7 @@ // Modules Left "modules-left": [ "custom/appmenu", - "custom/settings", - "custom/waybarthemes", - "custom/wallpaper", + "group/settings", // START TASK TOOGLE "wlr/taskbar", // END TASK TOOGLE diff --git a/waybar/themes/ml4w-minimal/config b/waybar/themes/ml4w-minimal/config index 3008a87..43c87a7 100644 --- a/waybar/themes/ml4w-minimal/config +++ b/waybar/themes/ml4w-minimal/config @@ -32,6 +32,7 @@ "modules-left": [ "custom/appmenuicon", "hyprland/workspaces", + "group/settings", "group/quicklinks" ], diff --git a/waybar/themes/ml4w-minimal/style.css b/waybar/themes/ml4w-minimal/style.css index c27f544..2c6a5f2 100644 --- a/waybar/themes/ml4w-minimal/style.css +++ b/waybar/themes/ml4w-minimal/style.css @@ -140,13 +140,26 @@ window#waybar.empty #window { font-weight: bold; color: @iconcolor; } - - #custom-waybarthemes,#custom-system { - margin-right:15px; - } + +#custom-settings { + margin-right: 15; + +} + +#custom-chatgpt { + margin-right: 15px; + background-image: url("../assets/ai-icon-20.png"); + background-repeat: no-repeat; + background-position: center; + padding-right: 23px; +} + +#custom-waybarthemes,#custom-system { + margin-right:15px; +} - #custom-ml4w-welcome { +#custom-ml4w-welcome { margin-right: 15px; background-image: url("../assets/ml4w-icon-20.png"); background-repeat: no-repeat; diff --git a/waybar/themes/ml4w/config b/waybar/themes/ml4w/config index f66036e..3fce304 100644 --- a/waybar/themes/ml4w/config +++ b/waybar/themes/ml4w/config @@ -32,9 +32,7 @@ // Modules Left "modules-left": [ "custom/appmenu", - "custom/settings", - "custom/waybarthemes", - "custom/wallpaper", + "group/settings", // START TASK TOOGLE "wlr/taskbar", // END TASK TOOGLE diff --git a/waybar/themes/ml4w/style.css b/waybar/themes/ml4w/style.css index 42edc59..1a1c19a 100644 --- a/waybar/themes/ml4w/style.css +++ b/waybar/themes/ml4w/style.css @@ -184,6 +184,14 @@ window#waybar.empty #window { margin-right:20px; } +#custom-chatgpt { + margin-right: 15px; + background-image: url("../assets/ai-icon.png"); + background-repeat: no-repeat; + background-position: center; + padding-right: 24px; +} + #custom-ml4w-welcome { margin-right: 15px; background-image: url("../assets/ml4w-icon.png");