update the overview only config's description

This commit is contained in:
end-4
2024-04-07 23:20:00 +07:00
parent 855e3b3638
commit f3f41538e3
+12 -1
View File
@@ -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(),
],
});