ktprograms

Results 109 comments of ktprograms

Maybe something like 6 (or maybe 10, will have to see how long videos have non-"content" for) seconds or 90%, whichever is longer. (So short videos will still have a...

How did you install Arch Linux Arm? When I installed it, I used `efibootmgr` to add the kernel image and initramfs as a boot entry without GRUB. FYI I have...

Here's what I have currently working on this. ```diff diff --git a/scripts/dev/build_release.py b/scripts/dev/build_release.py index c175c68a7..1a7d7114c 100755 --- a/scripts/dev/build_release.py +++ b/scripts/dev/build_release.py @@ -328,10 +328,10 @@ def build_mac( utils.print_title("Building .app via pyinstaller")...

macOS crash log: ``` ------------------------------------- Translated Report (Full Report Below) ------------------------------------- Process: qutebrowser [32316] Path: /Users/USER/*/qutebrowser.app/Contents/MacOS/qutebrowser Identifier: org.qt-project.Qt.QtWebEngineCore Version: 2.5.2 (2.5.2) Code Type: ARM-64 (Native) Parent Process: fish [4597] Responsible:...

I got something working! 🎉 Here's the diff: ```diff diff --git a/scripts/dev/build_release.py b/scripts/dev/build_release.py index c175c68a7..23efe2348 100755 --- a/scripts/dev/build_release.py +++ b/scripts/dev/build_release.py @@ -278,6 +278,20 @@ def patch_mac_app() -> None: link_path.symlink_to(target_path) +def...

Update: Got codesigning to work. Here's the new diff: ```diff diff --git a/scripts/dev/build_release.py b/scripts/dev/build_release.py index c175c68a7..faaa771a2 100755 --- a/scripts/dev/build_release.py +++ b/scripts/dev/build_release.py @@ -278,6 +278,36 @@ def patch_mac_app() -> None: link_path.symlink_to(target_path)...

Let's maybe try and get a list of what's expected of a Vagrant provider, and we can see what's missing, and how simple/difficult it will be to add it. I...

@mdillavou If you install `socat`, then you can do this: 1. Run the VM with these additional qemu arguments: ``` -chardev socket,path=qga.sock,server,nowait,id=qga0 -device virtserialport,chardev=qga0,name=org.qemu.guest_agent.0 ``` 2. (Inside the VM): Start...

I'm thinking of adding (with a config toggle) a virtio serial port with ``` -chardev socket,port=4321,host=127.0.0.1,server,nowait,id=qga0 -device virtserialport,chardev=qga0,name=org.qemu.guest_agent.0 ``` and use `NSWorkspace.shared.notificationCenter.addObserver(forName: NSWorkspace.didWakeNotification` in order to run the `{"execute":"guest-set-time"}` command...