61 lines
2.7 KiB
JavaScript
61 lines
2.7 KiB
JavaScript
const { Notify, GLib, Gio } = imports.gi;
|
|
import * as Utils from 'resource:///com/github/Aylur/ags/utils.js';
|
|
import Battery from 'resource:///com/github/Aylur/ags/service/battery.js';
|
|
|
|
export function fileExists(filePath) {
|
|
let file = Gio.File.new_for_path(filePath);
|
|
return file.query_exists(null);
|
|
}
|
|
|
|
const FIRST_RUN_FILE = "firstrun.txt";
|
|
const FIRST_RUN_PATH = `${GLib.get_user_state_dir()}/ags/user/${FIRST_RUN_FILE}`;
|
|
const FIRST_RUN_FILE_CONTENT = "Just a file to confirm that you have been greeted ;)";
|
|
const APP_NAME = "illogical-impulse";
|
|
const FIRST_RUN_NOTIF_TITLE = "Welcome!";
|
|
const FIRST_RUN_NOTIF_BODY = `First run? 👀 <span foreground="#FF0202" font_weight="bold">CTRL+SUPER+T</span> to pick a wallpaper (or styles will break!)\nFor a list of keybinds, hit <span foreground="#c06af1" font_weight="bold">Super + /</span>.`;
|
|
|
|
var batteryWarned = false;
|
|
async function batteryMessage() {
|
|
const perc = Battery.percent;
|
|
const charging = Battery.charging;
|
|
if (charging) {
|
|
batteryWarned = false;
|
|
return;
|
|
}
|
|
for (let i = userOptions.battery.warnLevels.length - 1; i >= 0; i--) {
|
|
if (perc <= userOptions.battery.warnLevels[i] && !charging && !batteryWarned) {
|
|
batteryWarned = true;
|
|
Utils.execAsync(['bash', '-c',
|
|
`notify-send "${userOptions.battery.warnTitles[i]}" "${userOptions.battery.warnMessages[i]}" -u critical -a '${APP_NAME}' -t 69420 &`
|
|
]).catch(print);
|
|
break;
|
|
}
|
|
}
|
|
if (perc <= userOptions.battery.suspendThreshold) {
|
|
Utils.execAsync(['bash', '-c',
|
|
`notify-send "Suspending system" "Critical battery level (${perc}% remaining)" -u critical -a '${APP_NAME}' -t 69420 &`
|
|
]).catch(print);
|
|
Utils.execAsync('systemctl suspend').catch(print);
|
|
}
|
|
}
|
|
|
|
export async function startBatteryWarningService() {
|
|
Utils.timeout(1, () => {
|
|
Battery.connect('changed', () => batteryMessage().catch(print));
|
|
})
|
|
}
|
|
|
|
export async function firstRunWelcome() {
|
|
GLib.mkdir_with_parents(`${GLib.get_user_state_dir()}/ags/user`, 755);
|
|
if (!fileExists(FIRST_RUN_PATH)) {
|
|
Utils.writeFile(FIRST_RUN_FILE_CONTENT, FIRST_RUN_PATH)
|
|
.then(() => {
|
|
// Note that we add a little delay to make sure the cool circular progress works
|
|
Utils.execAsync(['hyprctl', 'keyword', 'bind', "Super,Slash,exec,ags -t cheatsheet"]).catch(print);
|
|
Utils.execAsync(['bash', '-c',
|
|
`sleep 0.5; notify-send "Millis since epoch" "$(date +%s%N | cut -b1-13)"; sleep 0.5; notify-send '${FIRST_RUN_NOTIF_TITLE}' '${FIRST_RUN_NOTIF_BODY}' -a '${APP_NAME}' &`
|
|
]).catch(print)
|
|
})
|
|
.catch(print);
|
|
}
|
|
} |