From dfa25763fa85f9c90cbb9f8234e28e5daff63a6b Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Sun, 7 Apr 2024 23:20:00 +0700 Subject: [PATCH] update the overview only config's description --- .config/ags/config_overviewOnly.js | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.config/ags/config_overviewOnly.js b/.config/ags/config_overviewOnly.js index 9e184b5dc..58ddfe911 100644 --- a/.config/ags/config_overviewOnly.js +++ b/.config/ags/config_overviewOnly.js @@ -1,3 +1,12 @@ +// Want only the overview from my config? this is what you're looking for! +// Remember to install the `dart-sass` for styles to load properly (and AGS of course) +// To launch this, run the following +// ags -c ~/.config/ags/config_overviewOnly.js +// To toggle the overview, run: +// ags -t overview +// You might wanna add that as a keybind (in hyprland.conf) +// bind = Super, Tab, exec, ags -t overview + // Import import GLib from 'gi://GLib'; import App from 'resource:///com/github/Aylur/ags/app.js' @@ -20,6 +29,8 @@ applyStyle().catch(print); App.config({ css: `${COMPILED_STYLE_DIR}/style.css`, stackTraceOnError: true, - windows: [Overview()], + windows: [ + Overview(), + ], });