From dcfb172704f3afb68a30425029ec834be2883274 Mon Sep 17 00:00:00 2001 From: bt Date: Sat, 8 Jun 2024 13:22:19 -0400 Subject: More content porting, on-going markdown changes for lowdown support --- build/audio-hotkeys-on-linux-mint/index.html | 32 +++++++++++++++++----------- 1 file changed, 19 insertions(+), 13 deletions(-) (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 index 78de371..3d945f2 100644 --- a/build/audio-hotkeys-on-linux-mint/index.html +++ b/build/audio-hotkeys-on-linux-mint/index.html @@ -1,31 +1,37 @@ - + Audio Hotkeys on Linux Mint - - + + +
-

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
+
+

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
+
+// Volume Down
 pactl set-sink-volume @DEFAULT_SINK@ -5%
-
-
// Toggle Mute
+
+// Toggle Mute
 pactl set-sink-mute @DEFAULT_SINK@ toggle