aboutsummaryrefslogtreecommitdiffstats
path: root/config/ags/modules/.configuration/user_options.js
diff options
context:
space:
mode:
authorJa.KooLit <85185940+JaKooLit@users.noreply.github.com>2025-07-15 19:48:59 +0900
committerGitHub <noreply@github.com>2025-07-15 19:48:59 +0900
commit30f73308e232b49cfb30dc8015b315ea24e6b80c (patch)
tree69e8b1f219b2638d3119c70aea870730d7dae105 /config/ags/modules/.configuration/user_options.js
parentccc57814f5b72f5481d5ea7fe4de4958dc80f553 (diff)
parentd3a59bcfac1f24b0f44e4bc798a59ac494bfedeb (diff)
Merge pull request #762 from JaKooLit/dev-quickshell
Merging Dev-quickshell to development
Diffstat (limited to 'config/ags/modules/.configuration/user_options.js')
-rw-r--r--config/ags/modules/.configuration/user_options.js127
1 files changed, 0 insertions, 127 deletions
diff --git a/config/ags/modules/.configuration/user_options.js b/config/ags/modules/.configuration/user_options.js
deleted file mode 100644
index 242c0575..00000000
--- a/config/ags/modules/.configuration/user_options.js
+++ /dev/null
@@ -1,127 +0,0 @@
-
-import userOverrides from '../../user_options.js';
-
-// Defaults
-let configOptions = {
- // General stuff
- 'ai': {
- 'defaultGPTProvider': "openai",
- 'defaultTemperature': 0.9,
- 'enhancements': true,
- 'useHistory': true,
- 'writingCursor': " ...", // Warning: Using weird characters can mess up Markdown rendering
- },
- 'animations': {
- 'choreographyDelay': 35,
- 'durationSmall': 110,
- 'durationLarge': 180,
- },
- 'appearance': {
- 'keyboardUseFlag': false, // Use flag emoji instead of abbreviation letters
- },
- 'apps': {
- 'imageViewer': "loupe",
- 'terminal': "foot", // This is only for shell actions
- },
- 'battery': {
- 'low': 20,
- 'critical': 10,
- },
- 'music': {
- 'preferredPlayer': "plasma-browser-integration",
- },
- 'onScreenKeyboard': {
- 'layout': "qwerty_full", // See modules/onscreenkeyboard/onscreenkeyboard.js for available layouts
- },
- 'overview': {
- 'scale': 0.18, // Relative to screen size
- 'numOfRows': 2,
- 'numOfCols': 5,
- 'wsNumScale': 0.09,
- 'wsNumMarginScale': 0.07,
- },
- 'sidebar': {
- 'imageColumns': 2,
- 'imageBooruCount': 20,
- 'imageAllowNsfw': false,
- },
- 'search': {
- 'engineBaseUrl': "https://www.google.com/search?q=",
- 'excludedSites': [], //add site to exclude from result. eg: "quora.com"
- },
- 'time': {
- // See https://docs.gtk.org/glib/method.DateTime.format.html
- // Here's the 12h format: "%I:%M%P"
- // For seconds, add "%S" and set interval to 1000
- 'format': "%H:%M",
- 'interval': 5000,
- 'dateFormatLong': "%A, %d/%m", // On bar
- 'dateInterval': 5000,
- 'dateFormat': "%d/%m", // On notif time
- },
- 'weather': {
- 'city': "",
- },
- 'workspaces': {
- 'shown': 10,
- },
- // Longer stuff
- 'icons': {
- substitutions: {
- 'codium-url-handler': "vscodium",
- 'codium': "vscodium",
- 'code-url-handler': "visual-studio-code",
- 'Code': "visual-studio-code",
- 'GitHub Desktop': "github-desktop",
- 'Minecraft* 1.20.1': "minecraft",
- 'gnome-tweaks': "org.gnome.tweaks",
- 'pavucontrol-qt': "pavucontrol",
- 'eu.betterbird.Betterbird' : "thunderbird",
- 'thunderbird-esr': "thunderbird",
- 'wps': "wps-office2019-kprometheus",
- 'wpsoffice': "wps-office2019-kprometheus",
- 'firefox-esr': "firefox",
- 'soffice' : "libreoffice",
- '': "image-missing",
- }
- },
- 'keybinds': {
- // Format: Mod1+Mod2+key. CaSe SeNsItIvE!
- // Modifiers: Shift Ctrl Alt Hyper Meta
- // See https://docs.gtk.org/gdk3/index.html#constants for the other keys (they are listed as KEY_key)
- 'overview': {
- 'altMoveLeft': "Ctrl+b",
- 'altMoveRight': "Ctrl+f",
- 'deleteToEnd': "Ctrl+k",
- },
- 'sidebar': {
- 'apis': {
- 'nextTab': "Page_Down",
- 'prevTab': "Page_Up",
- },
- 'options': { // Right sidebar
- 'nextTab': "Page_Down",
- 'prevTab': "Page_Up",
- },
- 'pin': "Ctrl+p",
- 'cycleTab': "Ctrl+Tab",
- 'nextTab': "Ctrl+Page_Down",
- 'prevTab': "Ctrl+Page_Up",
- },
- },
-}
-
-// Override defaults with user's options
-function overrideConfigRecursive(userOverrides, configOptions = {}) {
- for (const [key, value] of Object.entries(userOverrides)) {
- if (typeof value === 'object') {
- overrideConfigRecursive(value, configOptions[key]);
- } else {
- configOptions[key] = value;
- }
- }
-}
-overrideConfigRecursive(userOverrides, configOptions);
-
-globalThis['userOptions'] = configOptions;
-export default configOptions; \ No newline at end of file
send patches to the email below
yukais@pinapelz.com
include the subject [PATCH repo_name]
pinapelz.com
homepage