Compare commits

..

No commits in common. "ee81307555ec0670e1690f93c103dd58e4acd287" and "e5c07186ac0269cdffa618844babd72e69969aa6" have entirely different histories.

5 changed files with 1 additions and 25 deletions

View File

@ -122,7 +122,7 @@ call plug#end()
lua << EOF lua << EOF
require'nvim-treesitter.configs'.setup { require'nvim-treesitter.configs'.setup {
ensure_installed = { "c", "cpp", "javascript", "python", "vim", "latex", "fish", "bash" }, ensure_installed = { "c", "cpp", "javascript", "python", "vim", "latex", "fish" },
sync_install = false, sync_install = false,
auto_install = false, auto_install = false,
highlight = { highlight = {

View File

@ -6,4 +6,3 @@ TMPFILE="$(mktemp)"
xsel -b > "$TMPFILE" xsel -b > "$TMPFILE"
nvim "$TMPFILE" nvim "$TMPFILE"
cat "$TMPFILE" | xsel -ib cat "$TMPFILE" | xsel -ib
rm "$TMPFILE"

View File

@ -5,9 +5,6 @@
if [ "$DUNST_APP_NAME" = "soundboard" ]; then if [ "$DUNST_APP_NAME" = "soundboard" ]; then
exit exit
fi fi
if [ "$DUNST_APP_NAME" = "prod" ]; then
exit
fi
if pactl list short sinks | grep -q virtual_mic; then if pactl list short sinks | grep -q virtual_mic; then
mpv ~/.local/bin/deskutils/notif.wav --audio-device=pulse/alsa_output.usb-C-Media_Electronics_Inc._USB_Audio_Device-00.analog-stereo mpv ~/.local/bin/deskutils/notif.wav --audio-device=pulse/alsa_output.usb-C-Media_Electronics_Inc._USB_Audio_Device-00.analog-stereo

View File

@ -1,7 +0,0 @@
#!/bin/sh
# visual reminder of watson status
while true; do
notify-send -a "prod" -r 13371234 "$(watson status)"
sleep 5
done

View File

@ -1,13 +0,0 @@
#!/bin/sh
TMPFILE="$(mktemp)"
nvim "$TMPFILE"
cat "$TMPFILE" | while read line; do
link="$(echo $line | awk -F";" '{print $1}')"
artist="$(echo $line | awk -F";" '{print $2}')"
alb="$(echo $line | awk -F";" '{print $3}')"
file="$artist-$alb"
yt-dlp "$link" -x --audio-format mp3 --no-playlist -o "$file.%(ext)s"
mid3v2 -a "$artist" "$file"*
mid3v2 -A "$alb" "$file"*
mid3v2 -t "$alb" "$file"*
done