From 28168d1282defc6cb995a223f79fa478b0d2424a Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Thu, 21 Mar 2024 19:19:45 +0700 Subject: [PATCH] detect uppercase >actions --- .config/ags/modules/overview/miscfunctions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/ags/modules/overview/miscfunctions.js b/.config/ags/modules/overview/miscfunctions.js index be3ae6c10..82f1ba671 100644 --- a/.config/ags/modules/overview/miscfunctions.js +++ b/.config/ags/modules/overview/miscfunctions.js @@ -11,7 +11,7 @@ export function hasUnterminatedBackslash(inputString) { } export function launchCustomCommand(command) { - const args = command.split(' '); + const args = command.toLowerCase().split(' '); if (args[0] == '>raw') { // Mouse raw input Utils.execAsync('hyprctl -j getoption input:accel_profile') .then((output) => {