diff options
author | Kyle K <kylek389@gmail.com> | 2020-04-11 18:37:06 -0500 |
---|---|---|
committer | Kyle K <kylek389@gmail.com> | 2020-04-11 18:37:06 -0500 |
commit | 13036a5746aea13b3ac78e234c97c05980e05473 (patch) | |
tree | 0a5ccd22a8778b4e1e3199c7bd3c690a2099307d /install.sh | |
parent | eeabb98790243c5fe6c9570eb4c5133a2e18f3a8 (diff) | |
download | gentoox-13036a5746aea13b3ac78e234c97c05980e05473.tar.gz gentoox-13036a5746aea13b3ac78e234c97c05980e05473.tar.bz2 gentoox-13036a5746aea13b3ac78e234c97c05980e05473.zip |
enable compress=lzo for btrfs, add arandr and adjust ffmpeg and vlc USE flags for more features
Diffstat (limited to 'install.sh')
-rwxr-xr-x | install.sh | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -32,7 +32,7 @@ setup_btrfs () { mkfs.btrfs -f -L GENTOO $DEVICE mkdir /mnt/install - mount $DEVICE /mnt/install + mount -o compress=lzo $DEVICE /mnt/install btrfs subvolume create /mnt/install/@ btrfs subvolume create /mnt/install/@/.snapshots @@ -62,7 +62,7 @@ setup_btrfs () { btrfs subvolume set-default $(btrfs subvolume list /mnt/install | grep "@/.snapshots/1/snapshot" | grep -oP '(?<=ID )[0-9]+') /mnt/install umount /mnt/install - mount $DEVICE /mnt/install + mount -o compress=lzo $DEVICE /mnt/install # ls /mnt/install should respond with empty result |