Skip to content

Instantly share code, notes, and snippets.

View NotAShelf's full-sized avatar
❄️

NotAShelf

❄️
  • [::1]
View GitHub Profile
$ cd /var/lib/docker
$ btrfs subvolume delete btrfs/subvolumes/*
@NotAShelf
NotAShelf / archtweaks.md
Last active November 20, 2023 14:52 — forked from lbrame/archtweaks.md
Tweaks I've made to my Arch Linux installation

Arch Linux tweaks

This is a collection of the tweaks and modification I've made to my Arch Linux installation over the months. These may be applicable to other distros, but please check first before doing anything. I also included Arch Wiki references for all the procedures I mentioned. My recommendation is not to blindly follow this gist but to always check with the Arch Linux wiki first. Things move fast and by the time you're reading this my gist may be out of date. Lastly, the golden rule: never execute a command you don't understand.

Also do note that some arguments -or the commands themselves- within those commands may differ based on your hardware such as graphics drivers. Know your hardware and the alternatives to the commands I'm running if your hardware differs greatly (e.g. AMD to NVIDIA)

Installing the KDE Plasma desktop

There are various ways to install it on Arch. The most popular one is to install plasma and plasma-applications, but I don't like doing that because it comes with

@NotAShelf
NotAShelf / pbcopy-and-pbpaste-in-arch-linux.md
Last active March 20, 2023 12:23 — forked from aarnone/pbcopy-and-pbpaste-in-arch-linux.md
Get pbcopy and pbpaste in Arch Linux

Get pbcopy and pbpaste in Arch Linux

First you need the 'xsel' package.

pacman -S xsel

Then create aliases.

alias pbcopy='xsel --clipboard --input'
alias pbpaste='xsel --clipboard --output'