| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
| |
eyeD3 got orphaned in the AUR, so I looked for an alternative. Apparently ffmpeg also supports the ability to tag audio files, so this pull request replaces all the helper applications with ffmpeg
|
| |
|
|
|
|
|
|
|
| |
* Fix tag script mp3 issue
When you don't manually specify $total and $date with an mp3 file the eyeD3 command tries tagging with an empty variable, which causes it to error. This fixes it by only passing the parameter to the command if the variable is set.
This pull request also adds support for the $genre and $comment variable.
* Remove double backslash
|
| | |
|
| |
|
|
|
|
|
|
|
|
|
| |
Make a temporary directory in $XDG_RUNTIME_DIR instead of $PASSWORD_STORE_DIR.
$XDG_RUNTIME_DIR defaults to /run/user/$uid/. This directory has the security advantage of only being readable and writable by the current user and being mounted in RAM, causing the screenshot to be fully wiped on shutdown and not needing shred, which doesn't work reliably on SSD's.
Also quoted $dir, for the off chance someone has spaces in their $PASSWORD_STORE_DIR.
Removed the check for xclip and the $issuer and $name variables, as they are unused.
If you're wondering why echo is piped into dmenu, on my system dmenu hung when called without the pipe, causing the whole script to freeze.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
the title then extension format with the --restrict-filenames again for underscores instead of spaces.
Works typically well as music will have Artist name first usually followed by song title so no need to format.
haven't looked into the --embed-metadata parameter, only imagine it could be useful if it saves the url suffix for youtube link (which you don't want in your filename hopefully)
for my video downloads, i just use this.
alias ydl='yt-dlp -o '%(title)s.%(ext)s' -f bv+ba/b --restrict-filenames'
alias mp3='yt-dlp -o '%(title)s.%(ext)s' -f bestaudio -x --audio-format mp3 --embed-thumbnail --restrict-filenames'
Probably bad practice to have single quotes within more single quotes but ran into issues with yt-dlp over using double quotes.
-Ryan
|
| |
|
| |
The --restrict-filenames parameter will automatically replace spaces with underlines.
|
| | |
|
| | |
|
| |\ |
|
| | |
| |
| |
| | |
After testing they weren't needed after all
|
| | | |
|
| | | |
|
| |/ |
|
| | |
|
| |\ |
|
| | |
| |
| | |
Add double quotes to prevent splitting directory names with spaces
|
| | | |
|
| | |
| |
| | |
Sorry for making another merge request here, but I realized that the command would fail if the filepath contained spaces. Adding quotation marks fixes this issue
|
| |\ \
| |/
|/| |
|
| | | |
|
| |/|
| |
| |
| | |
ssnailed-patch-2
|
| | |
| |
| |
| | |
Allows parsing texroot comments so that you can compile a LaTeX document from outside of the document root, as long as it contains the usual magic comment format:
% !TEX root = doc.tex
|
| |\ \ |
|
| | |/
| |
| | |
Doing things the way it's intended. This also makes it easier to copy the autocmd to a lua based configuration.
|
| |/ |
|
| | |
|
| |\ |
|
| | | |
|
| |/ |
|
| |\ |
|
| | | |
|
| |/ |
|
| | |
|
| | |
|
| | |
|
| |\ |
|
| | | |
|
| |/ |
|
| | |
|
| | |
|
| |
|
| |
As we see in the docs here: https://pipewire.pages.freedesktop.org/wireplumber/running-wireplumber-daemon.html#pipewire-conf we need to start wireplumber in replace of the old media session, not "wireplumber as server". (This is my first hecking commit ever !!!!!!!!!)
|
| | |
|
| |\ |
|
| | | |
|
| |/|
| |
| |
| | |
Secondarian-patch-1
|
| | |
| |
| | |
This lets you choose regions for Germany and get radar gifs from the national weather service instead of Sat24 which are way higher quality.
|
| |/ |
|
| |\ |
|
| |/|
| |
| |
| | |
https://github.com/Prof-Bloodstone/voidrice into Prof-Bloodstone-dmenumount-filter-parents
|
| | |
| |
| |
| |
| | |
This PR makes `dmenumount` script filter out all devices, which have childs. This way it won't suggest to mount your partitions which have LUKS or lvm setup on it.
If someone knows of a better way to do something, that'd be appreciated :)
|