Skip to content

Instantly share code, notes, and snippets.

View SamMorrowDrums's full-sized avatar
:fishsticks:

Sam Morrow SamMorrowDrums

:fishsticks:
View GitHub Profile
@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'
@TrillCyborg
TrillCyborg / mastodon-docker-setup.md
Last active May 5, 2024 22:42
Mastodon Docker Setup

Mastodon Docker Setup

Setting up

Clone Mastodon's repository.

# Clone mastodon to ~/live directory
git clone https://github.com/tootsuite/mastodon.git live
# Change directory to ~/live

cd ~/live