Skip to content

Instantly share code, notes, and snippets.

@augiedoggie
augiedoggie / bedc.sh
Last active September 12, 2023 05:26
Command line tool to send messages to the developer console by PulkoMandy
#!/bin/env bash
usage() {
echo "$0 [-s] [-e] [-l] [-d] [-c <#>] <name> <text>"
echo " -s Send success message"
echo " -e Send error message"
echo " -l Add separator line"
echo " -d Delete all messages"
echo " -c <#> Use color # [0-6]"
echo " Only one of -s, -e, -l, or -d can be used"
@augiedoggie
augiedoggie / qterm-toggle.sh
Last active April 26, 2023 14:01
Popup/Quake style terminal for Haiku OS
#!/bin/bash
### the unique window title prefix for our terminal session
terminalKeyword="QuakeTerm"
### optionally set the location of a custom terminal profile to be used
### it must contain whatever is used as the terminalKeyword at the beginning of the "Window title"
### for example: "Window title" , "QuakeTerm %i: %t"
### comment out the line to use the default Terminal settings
#terminalProfile="/boot/home/config/non-packaged/apps/MyCustomTerminalSettings"