* aliasrc | improve se()
1. Remove external commands like find.
2. Remove extensions and path (if present) from the names in fzf.
3. Only open Nvim if there is a selection.
Do all of these without using find, sed, grep.
- First line creates an array with the files in the scripts directory.
- Second line removes path (:t) and the extensions (:r) from the scripts.
- [[ "${c}" ]] checks if this variable is non-empty.
- ${${(M)s:#*/${c}*}[1]}
(M) enables "match" mode.
:# anchors the pattern to the start of each array element.
*/${c}* matches any path containing the selected basename.
[1] selects the first matching item.
* capture sub-directories too
useful if want to use shortcuts w/ different progs instead of
their default behavior (cd / $EDITOR), e.g.:
```sh
cd ~/Downloads
mv foo.mp3 $music
```
Co-authored-by: Luke Smith <luke@lukesmith.xyz>
* weath: Add option to get forecast from a different location
* Remove retry and make max time lower because it is interactive
* Give weath 'cp' option to copy forecast as plain text for sharing
* Make weath a separate script
* Replace youtube-dl with yt-dlp in qndl
* Replace youtube-dl with yt-dlp in dmenuhandler
* Replace youtube-dl with yt-dlp in newsboat config
* Replace youtube-dl with yt-dlp in aliasrc
Co-authored-by: Luke Smith <luke@lukesmith.xyz>
* minor forgoten stuff
we already have shutdown in sudo loop
* why was this still here? it belongs in ~/.config/
* what the actual phucc
* implemented loginctl and fixed shebang