aboutsummaryrefslogtreecommitdiff
path: root/_posts/2020-06-14-audio-hotkeys-on-linux-mint.md
diff options
context:
space:
mode:
authorBradley Taunt <bt@btxx.org>2024-07-02 14:28:49 -0400
committerBradley Taunt <bt@btxx.org>2024-07-02 14:28:49 -0400
commitdc6db80fa72286704849ef61ee0e5ccb5841cb09 (patch)
tree9235d796229d49211c27a07b9d18585d503baa94 /_posts/2020-06-14-audio-hotkeys-on-linux-mint.md
parent088c87bcb58be576308da503d4f11a68843c5013 (diff)
Conversion to barf for testing purposes
Diffstat (limited to '_posts/2020-06-14-audio-hotkeys-on-linux-mint.md')
-rw-r--r--_posts/2020-06-14-audio-hotkeys-on-linux-mint.md23
1 files changed, 0 insertions, 23 deletions
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
-