Notes:
- Adding a link does not equal an endorsement of any kind.
- Ordered by year and discovery date.
| # OBJECTIVE: Install Arch Linux with encrypted root and swap filesystems with an ENCRYPTED BOOT and boot from UEFI. We will | |
| also decrypt and mount our entire encrypted system using a single LUKS passphrase entry. | |
| # Note: This method supports both dedicated Arch installs and those who wish to install Arch on a multi-OS-UEFI booting system. | |
| # External USB HDD/SSD Installers Notes: Encrypted Arch installs can be booted and run from an external USB HDD or SSD, but | |
| # only when the installation is correctly set up. There are several necessary changes to my standard procedure you'll want | |
| # to make during the install process. Read my External USB HDD/SSD Installation section below before proceeding. |
| if [ -z "${BASH_VERSION}" ]; then | |
| exec bash "$@" | |
| fi | |
| # Bash script here | |
| echo "${BASH_VERSION}" |
Notes:
| # OBJECTIVES: Install Arch Linux as a VirtualBox Guest with a complete Plasma5/KDE environment. | |
| # Provide encrypted root and swap filesystems and UEFI boot our Arch Guest from within VirtualBox. | |
| # Note: This install method is specific to VirtualBox (VBox) to allow non-Arch users and Arch testers to evaluate a properly | |
| # configured and secure Arch OS while running a fully enabled Plasma/KDE system, and also by concurrently taking advantage | |
| # of the multiple isolation safeguards inherently provided by the VBox environment. | |
| # For those who want to install Arch on bare metal in a way that supports both dedicated Arch installations and Arch | |
| # installation on a SSD/HDD multi-OS-UEFI-booting system, please refer to my Arch System Installation Guide, here: |
Disclaimer: Please follow this guide being aware of the fact that I'm not an expert regarding the things outlined below, however I made my best attempt. A few people in IRC confirmed it worked for them and the results looked acceptable.
Attention: After following all the steps run gdk-pixbuf-query-loaders --update-cache as root, this prevents various gdk-related bugs that have been reported in the last few hours. Symptoms are varied, and for Cinnamon the DE fails to start entirely while for XFCE the icon theme seemingly can't be changed anymore etc.
Check the gist's comments for any further tips and instructions, especially if you are running into problems!
Results after following the guide as of 11.01.2017 13:08:
| --[[ | |
| mpv 5-bands equalizer with visual feedback. | |
| Copyright 2016 Avi Halachmi ( https://github.com/avih ) | |
| License: public domain | |
| Default config: | |
| - Enter/exit equilizer keys mode: ctrl+e | |
| - Equalizer keys: 2/w control bass ... 6/y control treble, and middles in between | |
| - Toggle equalizer without changing its values: ctrl+E (ctrl+shift+e) |
| #!/bin/bash | |
| #no PATH, no way to accidently run any programs | |
| PATH='' | |
| #useful variables | |
| term_height=0 | |
| term_width=0 | |
| term_scroll_height=0 | |
| status_line_row=0 |
| If this is hard to read in your browser, just copy the text and paste it into your editor. | |
| Turn 'line wrapping' on. :) | |
| This is a 'how to' for anyone interested in a i3 setup and also for anyone currently | |
| using i3 and wants to tweak there setup a little more. I am constantly updating my | |
| i3 config with cool 'stuff.' I hope you enjoy reading and if you use some of the code, | |
| great! I don't know everything and am still learning, too. :) | |
| This is my system settings for i3. Specifically, I use [Manjaro i3](https://forum.manjaro.org/index.php?topic=28022.0). |
| /** | |
| * Author: Jason White | |
| * License: Public Domain | |
| * | |
| * Description: | |
| * This is a simple test program to hook into PulseAudio volume change | |
| * notifications. It was created for the possibility of having an automatically | |
| * updating volume widget in a tiling window manager status bar. | |
| * | |
| * Compiling: |