aboutsummaryrefslogtreecommitdiff
path: root/posts/audio-hotkeys-on-linux-mint.md
diff options
context:
space:
mode:
Diffstat (limited to 'posts/audio-hotkeys-on-linux-mint.md')
-rw-r--r--posts/audio-hotkeys-on-linux-mint.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/posts/audio-hotkeys-on-linux-mint.md b/posts/audio-hotkeys-on-linux-mint.md
index 0a3bd7a..1037e91 100644
--- a/posts/audio-hotkeys-on-linux-mint.md
+++ b/posts/audio-hotkeys-on-linux-mint.md
@@ -8,7 +8,7 @@ Setting up all my go-to applications (Sublime, LocalWP, Riot, Evolution, etc) wa
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.
-```sh
+~~~sh
// Volume Up
pactl set-sink-volume @DEFAULT_SINK@ +5%
@@ -17,5 +17,5 @@ pactl set-sink-volume @DEFAULT_SINK@ -5%
// Toggle Mute
pactl set-sink-mute @DEFAULT_SINK@ toggle
-```
+~~~