From dc4bd24a5a00b15ed293c9cb4981e69f701e17e6 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Fri, 31 Jan 2025 13:27:27 +0900 Subject: WaybarCustom modules fix!!! Not anymore hard coded to firefox and thunar but instead it will open your default file manager and default web browser :) Still hard coded to kitty though ( --- config/waybar/ModulesCustom | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'config/waybar') diff --git a/config/waybar/ModulesCustom b/config/waybar/ModulesCustom index f0f52f70..9d0e804a 100644 --- a/config/waybar/ModulesCustom +++ b/config/waybar/ModulesCustom @@ -19,21 +19,21 @@ "custom/file_manager": { "format": " ", - "on-click": "thunar", + "on-click": "xdg-open . &", "tooltip": true, "tooltip-format": "File Manager", }, "custom/tty": { "format": " ", - "on-click": "kitty", + "on-click": "kitty &", "tooltip": true, "tooltip-format": "Launch Terminal", }, "custom/browser": { "format": " ", - "on-click": "firefox", + "on-click": "xdg-open http:// &", "tooltip": true, "tooltip-format": "Launch Browser", }, -- cgit v1.2.3 From b6c78db8963784b190c406419b7d042b1ca7cab9 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Sat, 1 Feb 2025 00:20:31 +0900 Subject: uploaded own use config as someone asked :) --- config/waybar/configs/[TOP] 0Ja0 | 51 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 config/waybar/configs/[TOP] 0Ja0 (limited to 'config/waybar') diff --git a/config/waybar/configs/[TOP] 0Ja0 b/config/waybar/configs/[TOP] 0Ja0 new file mode 100644 index 00000000..98345c32 --- /dev/null +++ b/config/waybar/configs/[TOP] 0Ja0 @@ -0,0 +1,51 @@ +/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ + +/* My Mostly Used waybar config incase you wonder :) */ +{ +"include": [ + "$HOME/.config/waybar/Modules", + "$HOME/.config/waybar/ModulesWorkspaces", + "$HOME/.config/waybar/ModulesCustom", + "$HOME/.config/waybar/ModulesGroups", + ], +"layer": "top", +//"mode": "dock", +"exclusive": true, +"passthrough": false, +"position": "top", +"spacing": 3, +"fixed-center": true, +"ipc": true, +"margin-top": 3, +"margin-left": 8, +"margin-right": 8, + +"modules-left": [ + "idle_inhibitor", + "custom/separator#blank", + "tray", + "custom/separator#blank", + "clock", + "custom/playerctl", + "custom/separator#blank_2", + "hyprland/window", + ], + +"modules-center": [ + "group/app_drawer", + "custom/separator#dot-line", + "hyprland/workspaces#rw", + "custom/separator#dot-line", + "custom/swaync", + ], + +"modules-right": [ + "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 -- cgit v1.2.3