This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Name: 89aa032a-be1c-46c9-9d00-f2b0ed124f55 | |
import "@johnlindquist/kit" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Name: Testing Script Changed | |
// Background: auto | |
import "@johnlindquist/kit" | |
app.onScriptChanged(script => { | |
log(`AWESOME changed: ${script}`) | |
}) | |
app.onScriptAdded(script => { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Name: Testing Get Selected Text | |
import "@johnlindquist/kit" | |
let text = await getSelectedText() | |
await setSelectedText(`yay ${text}!`) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import "@johnlindquist/kit" | |
// prefer using the full path | |
let qalc = `/opt/homebrew/bin/qalc` | |
let currentValue = "" | |
await arg( | |
{ | |
placeholder: "Qalculate", | |
enter: "Copy Result to Clipboard", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Name: Bookmarks | |
// Trigger: bm | |
// Shortcut: opt b | |
import "@johnlindquist/kit" | |
let bookmarks = await readFile(kenvPath("bookmarks.txt"), "utf8") | |
let choices = bookmarks | |
.split("\n") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Name: Widget Info | |
import "@johnlindquist/kit" | |
// converting video | |
let fullPath = await drop() | |
let css = ` | |
h1{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Name: Testing Servers | |
import "@johnlindquist/kit" | |
let servers = [ | |
{ | |
name: "Byte Bistro", | |
description: "This is the first server", | |
value: "server1", | |
}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Name: Copy Latest Transcript | |
import "@johnlindquist/kit" | |
// Define the directory path | |
const directoryPath = path.join(process.env.HOME, "Documents", "Audio Hijack") | |
async function readMostRecentTxtFile(dirPath) { | |
try { | |
// Read the directory contents |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Name: Toggle Transcribe | |
import "@johnlindquist/kit" | |
let ahScript = ` | |
let sessionName = "Transcribe"; //Set me to the target session | |
let session = app.sessionWithName( sessionName ) | |
if( session.running ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Name: Fix Clipboard | |
import "@johnlindquist/kit" | |
await replace({ | |
files: kitPath("main", "clipboard-history.js"), | |
from: "input: keyword + ` `", | |
to: "input: keyword ? keyword + ` ` : ``", | |
}) |