import GLib from "gi://GLib" import { createPoll } from "ags/time" export default function Prompt() { const username = GLib.get_user_name() || "user" const cursor = createPoll("_", 600, () => { // alternate between _ and empty to create blink return Date.now() % 1200 < 600 ? "_" : " " }) return ( ) }