forked from Shinonome/dots-hyprland
14 lines
683 B
JavaScript
14 lines
683 B
JavaScript
import Variable from 'resource:///com/github/Aylur/ags/variable.js';
|
|
const { exec } = Utils;
|
|
|
|
|
|
// Global vars for external control (through keybinds)
|
|
export const showMusicControls = Variable(false, {})
|
|
export const showColorScheme = Variable(false, {})
|
|
globalThis['openMusicControls'] = showMusicControls;
|
|
globalThis['openColorScheme'] = showColorScheme;
|
|
|
|
// 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}'`));
|