diff --git a/user-config/bash_aliases b/user-config/bash_aliases index 6567d54..59a077b 100644 --- a/user-config/bash_aliases +++ b/user-config/bash_aliases @@ -64,7 +64,7 @@ nspawn_root_dir="/var/lib/machines" # ArchLinux alias alct="sudo systemd-nspawn -D $nspawn_root_dir/ArchLinux" -alias alshell='machinectl shell ArchLinux' +alias alshell='machinectl shell edu4rdshl@ArchLinux' # BlackArch alias bact="sudo systemd-nspawn -D $nspawn_root_dir/BlackArch" @@ -95,7 +95,8 @@ alias longfiles="find ./ -printf '%s %p\n'| sort -nr | head -20" # Alias for pacman alias u='paru -Syu --noconfirm' alias cu='checkupdates' -alias pss='paru -Ss' +alias pss='pacman -Ss' +alias sa='paru -Ss' # Alias for pkgfile alias pkgfile='pkgfile -v' diff --git a/user-config/bash_functions b/user-config/bash_functions index 428ea89..5800785 100644 --- a/user-config/bash_functions +++ b/user-config/bash_functions @@ -1,5 +1,17 @@ #!/usr/bin/env bash nscopy() { - machinectl copy-to $1 $2 $3/${2##*/} + if [[ "$#" -ne 3 ]]; then + echo "Usage: nscopy machine-name host_source_path dest_path" + else + machinectl copy-to $1 $2 $3/${2##*/} + fi +} + +nsretr() { + if [[ "$#" -ne 3 ]]; then + echo "Usage: nsretr machine-name machine_source_path host_dest_path" + else + machinectl copy-from $1 $2 $3/${2##*/} + fi } diff --git a/user-config/chrome-flags.conf b/user-config/chrome-flags.conf index 2561e2f..0ca8cdf 100644 --- a/user-config/chrome-flags.conf +++ b/user-config/chrome-flags.conf @@ -1,3 +1,11 @@ --use-gl=desktop --disable-gpu-driver-bug-workarounds --enable-oop-rasterization +--ignore-gpu-blocklist +--smooth-scrolling +--enable-quic +--enable-gpu-rasterization +--enable-accelerated-video-decode +--enable-zero-copy +--enable-features=LazyImageLoading,NativeNotifications,ParallelDownloading +--disable-features=HardwareMediaKeyHandling