mess
1#!/usr/bin/env bash
2#
3# open a temp file as a scratchpad
4
5file="$(mktemp --suffix _scratchpad)"
6
7gum_echo() {
8 gum style --foreground 212 "$@"
9}
10
11micro "$file"
12
13gum_echo "FILEPATH:"
14realpath "$file" | lolcat -p 1.5
1#!/usr/bin/env bash
2#
3# open a temp file as a scratchpad
4
5file="$(mktemp --suffix _scratchpad)"
6
7gum_echo() {
8 gum style --foreground 212 "$@"
9}
10
11micro "$file"
12
13gum_echo "FILEPATH:"
14realpath "$file" | lolcat -p 1.5