From b7343f8c13b50d4b73d81ae66c753c665273f21f Mon Sep 17 00:00:00 2001 From: will Date: Thu, 9 Feb 2023 00:47:34 -0700 Subject: [PATCH] Update Things I Keep Having To Google --- blog/posts/guide_things_i_keep_having_to_google/index.php | 2 ++ 1 file changed, 2 insertions(+) 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