From 3f6a9546ec13063d0d5bdf21d30a93d3e8aa6050 Mon Sep 17 00:00:00 2001 From: Bradley Taunt Date: Tue, 2 Jul 2024 14:22:21 -0400 Subject: Rebuild changes based off latest barf --- build/audio-hotkeys-on-linux-mint/index.html | 54 ++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 build/audio-hotkeys-on-linux-mint/index.html (limited to 'build/audio-hotkeys-on-linux-mint/index.html') diff --git a/build/audio-hotkeys-on-linux-mint/index.html b/build/audio-hotkeys-on-linux-mint/index.html new file mode 100644 index 0000000..a35cc2e --- /dev/null +++ b/build/audio-hotkeys-on-linux-mint/index.html @@ -0,0 +1,54 @@ + + + + + + + + Audio Hotkeys on Linux Mint + + + + + + + +
+

Audio Hotkeys on Linux Mint

+

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. After looking a little too long on DDG & even Google, I finally found this forum thread with the solution.

+

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
+
+ \ No newline at end of file -- cgit v1.2.3-54-g00ecf