diff --git a/blog/posts/guide_things_i_keep_having_to_google/index.php b/blog/posts/guide_things_i_keep_having_to_google/index.php index 6e09c54..e35dce0 100644 --- a/blog/posts/guide_things_i_keep_having_to_google/index.php +++ b/blog/posts/guide_things_i_keep_having_to_google/index.php @@ -64,6 +64,8 @@

misc

xrandr --output <display name> --brightness <brightness>Janky software-side display brightness setting with xrandr wget "https://example.com/file.zip" -O temp.zip; unzip temp.zip; rm temp.zipBash one-liner to unzip a file from the internet to the current directory + yt-dlp -x --audio-format flac --audio-quality 0 -P ~/Music/Library/ -o "%(uploader)s - %(title)s.%(ext)s"My standard yt-dlp command for ripping music from Youtube and Soundcloud. I have an alias for this so I don't have to write it out every time. + alias myalias="command go here"Set an alias in bash. Put this in your .bashrc or similar to make it permanent.

Webdev stuff

Tables