Default keyboard shortcuts for Ghostty terminal emulator. Platform-specific differences are noted where applicable.
| Action | Windows/Linux | macOS |
|---|---|---|
| New window | Ctrl+Shift+N | Cmd+N |
| Close window | Alt+F4 | Cmd+Shift+W |
| #!/usr/bin/env ruby | |
| # Archive linkding bookmarks to Markdown files | |
| # Can use [Gather](https://brettterpstra.com/projects/gather-cli/) | |
| # for conversion (if installed), or use Marky | |
| # the Markdownifier (web-based). | |
| # | |
| # See options below for configuration | |
| # | |
| # This script is designed to run once initially, and then | |
| # be set to run in the background at intervals using cron |
| [ | |
| { | |
| "context": "Editor", | |
| "bindings": { | |
| "cmd-l": "editor::ToggleFold", | |
| "cmd-[": "pane::GoBack", | |
| "cmd-]": "pane::GoForward" | |
| } | |
| }, | |
| { |
| <?php | |
| # Licensed under a CC0 1.0 Universal (CC0 1.0) Public Domain Dedication | |
| # http://creativecommons.org/publicdomain/zero/1.0/ | |
| $mysite = 'https://adactio.com/'; // Change this to your website. | |
| $token_endpoint = 'https://tokens.indieauth.com/token'; | |
| $_HEADERS = array(); | |
| foreach(getallheaders() as $name => $value) { |
Note
This does not works in browser for quests which require you to play a game! Use the desktop app to complete those.
How to use this script:
Console tab| #!/bin/sh | |
| # use option -nn to show both textual and numeric ID's (names & numbers) | |
| i=/usr/share/misc/pci.ids.gz | |
| if [ ! -s $i ]; then | |
| busybox lspci | |
| else | |
| pciids=$(mktemp) | |
| zcat $i | sed '/^#/d; /^\t\t/d' > $pciids | |
| classes=$(mktemp) | |
| sed -n '/^C /,$p' $pciids > $classes |
| using System; | |
| using System.Collections.Generic; | |
| using System.Text; | |
| namespace Xamarin.Custom.Fonts | |
| { | |
| public static class Icon | |
| { | |
| public static string Glass = "\uf000"; | |
| public static string Music = "\uf001"; |
Instructions for AI coding agents working in this repository.