From 65d6ef3c892684f5abd0256eedacbc9bee7ca03e Mon Sep 17 00:00:00 2001 From: retrozinndev Date: Thu, 10 Apr 2025 16:30:54 -0300 Subject: [PATCH] :wastebasket: remove: sh/recording.sh script, not needed anymore --- ags/scripts/sh/recording.sh | 5 ----- ags/scripts/time.ts | 2 +- 2 files changed, 1 insertion(+), 6 deletions(-) delete mode 100644 ags/scripts/sh/recording.sh diff --git a/ags/scripts/sh/recording.sh b/ags/scripts/sh/recording.sh deleted file mode 100644 index 0b0ba02..0000000 --- a/ags/scripts/sh/recording.sh +++ /dev/null @@ -1,5 +0,0 @@ -#!/usr/bin/env bash - -wf-recorder $@ & -echo "PID: $!" -exit 0 diff --git a/ags/scripts/time.ts b/ags/scripts/time.ts index 9ca846b..cdb804a 100644 --- a/ags/scripts/time.ts +++ b/ags/scripts/time.ts @@ -1,6 +1,6 @@ import { GLib, Variable } from "astal"; -const time = new Variable(GLib.DateTime.new_now_local()).poll(600, () => +const time = new Variable(GLib.DateTime.new_now_local()).poll(500, () => GLib.DateTime.new_now_local())(); export const getDateTime = () => time;