This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Server = http://mirror.wdc1.us.leaseweb.net/archlinux/$repo/os/$arch | |
| Server = http://mirrors.rit.edu/archlinux/$repo/os/$arch | |
| Server = http://mirror.dal10.us.leaseweb.net/archlinux/$repo/os/$arch | |
| Server = http://ftp.snt.utwente.nl/pub/os/linux/archlinux/$repo/os/$arch | |
| Server = http://archmirror.hbit.sztaki.hu/archlinux/$repo/os/$arch | |
| Server = http://mirror.cs.pitt.edu/archlinux/$repo/os/$arch | |
| Server = http://arlm.tyzoid.com/$repo/os/$arch | |
| Server = http://mirror.ams1.nl.leaseweb.net/archlinux/$repo/os/$arch | |
| Server = http://mirror.sfo12.us.leaseweb.net/archlinux/$repo/os/$arch | |
| Server = http://mirror.one.com/archlinux/$repo/os/$arch |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SteamVR System Report created Fri Jun 28 19:59:00 2019 | |
| <Report> | |
| SteamVR Version: 1.5.15 (1561488580) | |
| SteamVR Date: 2019-06-25 | |
| Steam: Public | |
| Steam Branch: | |
| Steam AppID: 250820 | |
| Tracking: lighthouse | |
| OS: Linux version 5.1.8-arch1-1-ARCH (builduser@heftig-22377) (gcc version 8.3.0 (GCC)) #1 SMP PREEMPT Sun Jun 9 20:28:28 UTC 2019 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| accountsservice | |
| acpid | |
| alsa-utils | |
| android-sdk | |
| android-sdk-platform-tools | |
| android-studio | |
| ansible | |
| atom | |
| autoconf | |
| autokey |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Based on https://gist.githubusercontent.com/heppu/6e58b7a174803bc4c43da99642b6094b/raw/96b7ab0ea6356ac783fe4c90d1cb7073bdbb107f/ARCH_INSTALL.MD | |
| # Create bootable USB | |
| Download iso and use Etcher | |
| # Boot from USB and set prepare system | |
| ```bash | |
| timedatectl set-ntp true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /var/lib/gems/2.5.0/gems/jekyll-3.8.1/exe/jekyll b --watch |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| From blog folder: | |
| ./jekyll-post.py "NAME" -D _posts; rename 'y/A-Z/a-z/' _posts/* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| rename 'y/A-Z/a-z/' * |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| curl -s https://repos.fedorapeople.org/repos/thl/kernel-vanilla.repo | sudo tee /etc/yum.repos.d/kernel-vanilla.repo | |
| sudo dnf config-manager --set-enabled kernel-vanilla-stable |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Update all the things on Ubuntu | |
| alias dup="sudo apt clean all; sudo apt update; sudo apt -y full-upgrade; sudo flatpak update; sudo snap refresh; sudo apt autoremove" | |
| # Check primary nvme drive status | |
| alias nvmeck='sudo smartctl -a /dev/nvme0' | |
| # Connect to my OpenVPN server | |
| alias ovpn='sudo openvpn ~/openvpn_cert.ovpn' | |
| # Fetch latest ISO for OpenSUSE Tumbleweed | |
| alias tumbleweed='wget -N http://download.opensuse.org/tumbleweed/iso/openSUSE-Tumbleweed-DVD-x86_64-Current.iso' | |
| # Fortune-telling rainbow cow. For fun. | |
| fortune | cowsay | lolcat |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| find . -name '*.zip' -exec mkdir -p "Unzipped/{}" \; | |
| find . -name '*.zip' -exec unzip -o -d Unzipped/{}/ {} \; |