mirror of
https://github.com/The-Repo-Club/DotFiles.git
synced 2025-02-07 04:54:18 -05:00
7c1fbc918e
Signed-off-by: The-Repo-Club <wayne6324@gmail.com>
21 lines
308 B
Bash
Executable File
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 &
|