mirror of
https://github.com/rwxrob/dot
synced 2024-11-16 21:25:29 +00:00
7 lines
132 B
Plaintext
7 lines
132 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
IFS=$'\n'
|
||
|
select topic in $(tail -n $(($(tput lines)-1)) "$HOME/.topics"); do
|
||
|
t "${topic%[*}"
|
||
|
exit
|
||
|
done
|