Skip to content

Instantly share code, notes, and snippets.

View BrodieRobertson's full-sized avatar
😎
Hustling everyday

Brodie Robertson BrodieRobertson

😎
Hustling everyday
View GitHub Profile
@jpentland
jpentland / tabc.sh
Last active July 11, 2024 04:36
Add or remove windows from suckless' tabbed
#!/bin/sh
# Usage:
# tabc.sh <tabbed-id> <command>
# Commands:
# add <window-id> - Add window to tabbed
# remove <window-id> - Remove window from tabbed
# list - List all clients of tabbed
#
@aaronNGi
aaronNGi / newscript.sh
Created April 28, 2020 20:38
Boilerplate for new POSIX shell scripts
#!/bin/sh
prog_name=${0##*/}
version=1.0
version_text="Boilerplate for new scripts v$version"
options="h o: q v V"
help_text="Usage: $prog_name [-o <text>] [-hqvV] [<file>]...
Boilerplate for new scripts