TheRepoClub-DotFiles/localbin/.local/bin/scratch/scratch
The-Repo-Club 7c1fbc918e
Update Dotfiles
Signed-off-by: The-Repo-Club <wayne6324@gmail.com>
2022-10-16 15:14:37 +01:00

21 lines
308 B
Bash
Executable File

#!/usr/bin/env bash
# shellcheck disable=all
terminal='alacritty --title=scratchpad'
files='alacritty --title=clifm -e clifm'
volume='pavucontrol'
case "$1" in
terminal)
entry=$terminal
;;
files)
entry=$files
;;
volume)
entry=$volume
;;
esac
$entry &