Change music aliases for FZF script

This commit is contained in:
Alexander Navarro 2023-11-01 11:58:07 -03:00
parent 5898f6b5a6
commit 720a4e6ca7
5 changed files with 63 additions and 54 deletions

View file

@ -108,7 +108,7 @@ window:
# Font configuration
font:
normal:
family: JetBrainsMono NF
family: JetBrainsMono Nerd Font
style: Regular
bold:
# family: JetBrainsMono NF

View file

@ -28,7 +28,7 @@ return {
-- left aligned fixed size box with left aligned text
MAP({ "n", "v" }, "gcb", cb.lcbox, "Create a comment box")
-- centered adapted box with centered text
MAP({ "n", "v" }, "gcl", cb.cline, "Create a comment line")
MAP({ "n", "v" }, "gll", cb.cline, "Create a comment line")
end,
},
}

View file

@ -42,18 +42,6 @@ alias \
du3='dust --reverse --min-size 1M --depth 3' \
cat='bat';
## Music Streams
lofi_url="https://youtu.be/jfKfPfyJRdk"
nintendo_url="https://www.youtube.com/c/Henriko/live"
synthwave_url="https://www.youtube.com/live/4xDzrJKXOOY?si=3WUrIe4TWLO-fw9m"
alias \
music-lofi='mpv "$lofi_url" &>/dev/null &!' \
music-lofi-bg='ts lofi -d "mpv --no-video $lofi_url"' \
music-ninten='mpv "$nintendo_url" &>/dev/null &!' \
music-ninten-bg='ts lofi -d "mpv --no-video $nintendo_url"' \
music-synthwave='mpv "$synthwave_url" &>/dev/null &!' \
music-synthwave-bg='ts lofi -d "mpv --no-video $synthwave_url"'
# Misc
alias \
reload='exec $SHELL -l' \