mirror of
https://github.com/zephrynis/nix-flake.git
synced 2026-02-18 12:11:54 +00:00
- Add complete colorshell v2.0.3 configuration to home/ags-config/ - Disable runner plugin and NightLight tile (incompatible with NixOS) - Customize SCSS with full opacity (no transparency) - Add dark pale blue color scheme in home/pywal-colors/ - Configure Papirus-Dark icon theme via home-manager - Make ~/.config/ags/ immutable and managed by Nix store - Auto-deploy pywal colors to ~/.cache/wal/colors.json All AGS configuration is now reproducible and version controlled.
179 lines
5.5 KiB
TypeScript
179 lines
5.5 KiB
TypeScript
import { execAsync } from "ags/process";
|
|
import { getter, register, signal } from "ags/gobject";
|
|
import { Gdk } from "ags/gtk4";
|
|
import { createRoot, getScope, Scope } from "ags";
|
|
import { makeDirectory } from "./utils";
|
|
import { Notifications } from "./notifications";
|
|
import { time } from "./utils";
|
|
|
|
import GObject from "ags/gobject";
|
|
import GLib from "gi://GLib?version=2.0";
|
|
import Gio from "gi://Gio?version=2.0";
|
|
|
|
|
|
@register({ GTypeName: "Recording" })
|
|
export class Recording extends GObject.Object {
|
|
private static instance: Recording;
|
|
|
|
@signal() started() {};
|
|
@signal() stopped() {};
|
|
|
|
#recording: boolean = false;
|
|
#path: string = "~/Recordings";
|
|
#recordingScope?: Scope;
|
|
|
|
/** Default extension: mp4(h264) */
|
|
#extension: string = "mp4";
|
|
#recordAudio: boolean = false;
|
|
#area: (Gdk.Rectangle|null) = null;
|
|
#startedAt: number = -1;
|
|
#process: (Gio.Subprocess|null) = null;
|
|
#output: (string|null) = null;
|
|
|
|
/** GLib.DateTime of when recording started
|
|
* its value can be `-1` if undefined(no recording is happening) */
|
|
@getter(Number)
|
|
public get startedAt() { return this.#startedAt; }
|
|
|
|
@getter(Boolean)
|
|
public get recording() { return this.#recording; }
|
|
private set recording(newValue: boolean) {
|
|
(!newValue && this.#recording) ?
|
|
this.stopRecording()
|
|
: this.startRecording(this.#area || undefined);
|
|
|
|
this.#recording = newValue;
|
|
this.notify("recording");
|
|
}
|
|
|
|
@getter(String)
|
|
public get path() { return this.#path; }
|
|
public set path(newPath: string) {
|
|
if(this.recording) return;
|
|
|
|
this.#path = newPath;
|
|
this.notify("path");
|
|
}
|
|
|
|
@getter(String)
|
|
public get extension() { return this.#extension; }
|
|
public set extension(newExt: string) {
|
|
if(this.recording) return;
|
|
|
|
this.#extension = newExt;
|
|
this.notify("extension");
|
|
}
|
|
|
|
@getter(String)
|
|
public get recordingTime() {
|
|
if(!this.#recording || !this.#startedAt)
|
|
return "not recording";
|
|
|
|
const startedAtSeconds = time.get().to_unix() - Recording.getDefault().startedAt!;
|
|
if(startedAtSeconds <= 0) return "00:00";
|
|
|
|
const seconds = Math.floor(startedAtSeconds % 60);
|
|
const minutes = Math.floor(startedAtSeconds / 60);
|
|
const hours = Math.floor(minutes / 60);
|
|
|
|
return `${hours > 0 ? `${hours < 10 ? '0' : ""}${hours}` : ""}${ minutes < 10 ? `0${minutes}` : minutes }:${ seconds < 10 ? `0${seconds}` : seconds }`;
|
|
}
|
|
|
|
/** Recording output file name. null if screen is not being recorded */
|
|
public get output() { return this.#output; }
|
|
|
|
/** Currently unsupported property */
|
|
public get recordAudio() { return this.#recordAudio; }
|
|
public set recordAudio(newValue: boolean) {
|
|
if(this.recording) return;
|
|
|
|
this.#recordAudio = newValue;
|
|
this.notify("record-audio");
|
|
}
|
|
|
|
constructor() {
|
|
super();
|
|
const videosDir = GLib.get_user_special_dir(GLib.UserDirectory.DIRECTORY_VIDEOS);
|
|
if(videosDir) this.#path = `${videosDir}/Recordings`;
|
|
}
|
|
|
|
public static getDefault() {
|
|
if(!this.instance)
|
|
this.instance = new Recording();
|
|
|
|
return this.instance;
|
|
}
|
|
|
|
public startRecording(area?: Gdk.Rectangle) {
|
|
if(this.#recording)
|
|
throw new Error("Screen Recording is already running!");
|
|
|
|
createRoot(() => {
|
|
this.#recordingScope = getScope();
|
|
|
|
this.#output = `${time.get().format("%Y-%m-%d-%H%M%S")}_rec.${this.extension || "mp4"}`;
|
|
this.#recording = true;
|
|
this.notify("recording");
|
|
this.emit("started");
|
|
makeDirectory(this.path);
|
|
|
|
const areaString = `${area?.x ?? 0},${area?.y ?? 0} ${area?.width ?? 1}x${area?.height ?? 1}`;
|
|
|
|
this.#process = Gio.Subprocess.new([
|
|
"wf-recorder",
|
|
...(area ? [ `-g`, areaString ] : []),
|
|
"-f",
|
|
`${this.path}/${this.output!}`
|
|
], Gio.SubprocessFlags.STDOUT_PIPE | Gio.SubprocessFlags.STDERR_PIPE);
|
|
|
|
this.#process.wait_async(null, () => {
|
|
this.stopRecording();
|
|
});
|
|
|
|
this.#startedAt = time.get().to_unix();
|
|
this.notify("started-at");
|
|
|
|
const timeSub = time.subscribe(() => {
|
|
this.notify("recording-time");
|
|
});
|
|
|
|
this.#recordingScope.onCleanup(timeSub);
|
|
});
|
|
}
|
|
|
|
public stopRecording() {
|
|
if(!this.#process || !this.#recording) return;
|
|
|
|
!this.#process.get_if_exited() && execAsync([
|
|
"kill", "-s", "SIGTERM", this.#process.get_identifier()!
|
|
]);
|
|
|
|
this.#recordingScope?.dispose();
|
|
|
|
const path = this.#path;
|
|
const output = this.#output;
|
|
|
|
this.#process = null;
|
|
this.#recording = false;
|
|
this.#startedAt = -1;
|
|
this.#output = null;
|
|
this.notify("recording");
|
|
this.emit("stopped");
|
|
|
|
Notifications.getDefault().sendNotification({
|
|
actions: [
|
|
{
|
|
text: "View", // will be hidden(can be triggered by clicking in the notification)
|
|
id: "view",
|
|
onAction: () => {
|
|
execAsync(["xdg-open", `${path}/${output}`]);
|
|
}
|
|
}
|
|
],
|
|
appName: "Screen Recording",
|
|
summary: "Screen Recording saved",
|
|
body: `Saved as ${path}/${output}`
|
|
});
|
|
}
|
|
};
|