From dc6db80fa72286704849ef61ee0e5ccb5841cb09 Mon Sep 17 00:00:00 2001 From: Bradley Taunt Date: Tue, 2 Jul 2024 14:28:49 -0400 Subject: Conversion to barf for testing purposes --- _posts/2020-06-14-audio-hotkeys-on-linux-mint.md | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 _posts/2020-06-14-audio-hotkeys-on-linux-mint.md (limited to '_posts/2020-06-14-audio-hotkeys-on-linux-mint.md') diff --git a/_posts/2020-06-14-audio-hotkeys-on-linux-mint.md b/_posts/2020-06-14-audio-hotkeys-on-linux-mint.md deleted file mode 100644 index 3c398cd..0000000 --- a/_posts/2020-06-14-audio-hotkeys-on-linux-mint.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -layout: post -title: "Audio Hotkeys on Linux Mint" -date: 2020-06-14 ---- - - -I recently switched out the OS on my old 2011 MacBook Air with Linux Mint. It's a distro I've used a few times in the past, but never set it as one of my main daily drivers until now. - -Setting up all my go-to applications (Sublime, LocalWP, Riot, Evolution, etc) was a breeze. The only snag I ran into was properly setting up the volume shortcuts on my wireless [Logitech MK235 keyboard](https://www.amazon.com/gp/product/B01AROOL12/ref=as_li_tl?ie=UTF8&camp=1789&creative=9325&creativeASIN=B01AROOL12&linkCode=as2&tag=uglyduck-20&linkId=5cfe5875a0f263b933692c381a6a88a9). After looking a little too long on DDG & even Google, I finally found [this forum thread with the solution](https://forums.linuxmint.com/viewtopic.php?t=253048). - -For my own personal reference, I'm also going to include those code snippets here since you never know when you might need it again! And who knows, maybe this will help someone else stumbling around the internet. - - - // Volume Up - pactl set-sink-volume @DEFAULT_SINK@ +5% - - // Volume Down - pactl set-sink-volume @DEFAULT_SINK@ -5% - - // Toggle Mute - pactl set-sink-mute @DEFAULT_SINK@ toggle - -- cgit v1.2.3-54-g00ecf