aboutsummaryrefslogtreecommitdiffstats
path: root/config/ags/variables.js
diff options
context:
space:
mode:
authorJa.KooLit <jimmielovejay@gmail.com>2024-05-04 15:42:48 +0900
committerGitHub <noreply@github.com>2024-05-04 15:42:48 +0900
commit1127bae8815e1b60b637d0c88832bddae7cc5a1a (patch)
tree2501119e4914f79535e5bd1e12d64fc6754337c6 /config/ags/variables.js
parent5e304d31a220a64338e5cb84e397d1a102855260 (diff)
parentdc9f0cd58454b4cb33a704b11e4cc8a7c6594e67 (diff)
Merge pull request #231 from SherLock707/dev_overview
Added ags overview widget
Diffstat (limited to 'config/ags/variables.js')
-rw-r--r--config/ags/variables.js21
1 files changed, 21 insertions, 0 deletions
diff --git a/config/ags/variables.js b/config/ags/variables.js
new file mode 100644
index 00000000..ec4aedec
--- /dev/null
+++ b/config/ags/variables.js
@@ -0,0 +1,21 @@
+const { Gtk } = imports.gi;
+import Variable from 'resource:///com/github/Aylur/ags/variable.js';
+import * as Utils from 'resource:///com/github/Aylur/ags/utils.js';
+const { exec, execAsync } = Utils;
+
+Gtk.IconTheme.get_default().append_search_path(`${App.configDir}/assets/icons`);
+
+// Screen size
+export const SCREEN_WIDTH = Number(exec(`bash -c "xrandr --current | grep '*' | uniq | awk '{print $1}' | cut -d 'x' -f1 | head -1" | awk '{print $1}'`));
+export const SCREEN_HEIGHT = Number(exec(`bash -c "xrandr --current | grep '*' | uniq | awk '{print $1}' | cut -d 'x' -f2 | head -1" | awk '{print $1}'`));
+
+// Mode switching
+export const currentShellMode = Variable('normal', {}) // normal, focus
+globalThis['currentMode'] = currentShellMode;
+globalThis['cycleMode'] = () => {
+ if (currentShellMode.value === 'normal') {
+ currentShellMode.value = 'focus';
+ } else {
+ currentShellMode.value = 'normal';
+ }
+}
send patches to the email below
yukais@pinapelz.com
include the subject [PATCH repo_name]
pinapelz.com
homepage