aboutsummaryrefslogtreecommitdiffhomepage
path: root/posts/alpine.md
diff options
context:
space:
mode:
Diffstat (limited to 'posts/alpine.md')
-rw-r--r--posts/alpine.md16
1 files changed, 8 insertions, 8 deletions
diff --git a/posts/alpine.md b/posts/alpine.md
index 78b2329..d4fc8f9 100644
--- a/posts/alpine.md
+++ b/posts/alpine.md
@@ -67,7 +67,7 @@ I'll save you both the headache and large amount of time I wasted on this silly
I put the following in my `/etc/xdg/mimeapps.list` (which is included by default with the installer)
-~~~sh
+```sh
[Default Applications]
x-scheme-handler/http=org.qutebrowser.qutebrowser.desktop
x-scheme-handler/https=org.qutebrowser.qutebrowser.desktop
@@ -96,7 +96,7 @@ image/x-portable-greymap=feh.desktop
application/pcx=feh.desktop
image/svg+xml=feh.desktop
image/svg-xml=feh.desktop
-~~~
+```
You might have also noticed that I use `feh` as my default image viewer as well. That's just my personal preference, feel free to switch that out as you see fit.
@@ -116,25 +116,25 @@ Some of these "hacks" or tweaks I had to implement might help others who run int
It is important to install `gawk` since `awk` isn't "real" on Alpine. Once you have that on you system `aerc` will render emails out-of-the-box.[^1]
-~~~sh
+```sh
apk add gawk
-~~~
+```
### Sublime Text
Sublime Text requires flatpak, so if that isn't your *thing* then you're better off snagging a different editor. I've tried multiple times throughout my career to use an alternate editor (preferably 100% open source) but keep finding myself returning to Sublime. Maybe one day...
-~~~sh
+```sh
apk add flatpak
flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
-~~~
+```
Then reboot your machine for the changes to take. Login again and run:
-~~~sh
+```sh
flatpak install flathub com.sublimetext.three
-~~~
+```
FYI: You *might* need to run the above commands under `sudo` if your current user lacks proper permissions.