Compare commits
10 commits
d1134600cb
...
b03915f34f
Author | SHA1 | Date | |
---|---|---|---|
b03915f34f | |||
bc8f07ebe6 | |||
3edb407fb3 | |||
93f9d1cc5b | |||
e24c466894 | |||
67da32fa66 | |||
2ceeaa0879 | |||
05b0c7418b | |||
70b82aa005 | |||
f686e649b5 |
12 changed files with 198 additions and 1996 deletions
197
README.md
197
README.md
|
@ -1,16 +1,15 @@
|
|||
# Lenovo Yoga 6 13ALC7
|
||||
This repo is a documentation of how I installed Arch and got all the drivers for the Yoga 6, to make it work as if it was native.
|
||||
Since I got the [touchpad issues](https://www.reddit.com/r/Lenovo/comments/yzs5fq/faulty_touchpad_tried_everything_to_fix_it_and_i/), I'll need this once I get it fixed.
|
||||
<br/><br/>
|
||||
|
||||
# Archinstaller
|
||||
```
|
||||
loadkeys ca
|
||||
setfont ter-132b
|
||||
```
|
||||
|
||||
## Partionning with [cryptsetup](https://wiki.archlinux.org/title/Dm-crypt/Encrypting_an_entire_system#LUKS_on_a_partition)
|
||||
### Encrypting root partition
|
||||
```
|
||||
$ cryptsetup -y -v luksFormat --type luks1 /dev/nvme0n1p?
|
||||
$ cryptsetup open /dev/nvme0n1p? root
|
||||
$ PART="encrypted partition number ie. 2"
|
||||
$ cryptsetup -y -v luksFormat --type luks1 /dev/nvme0n1p$PART
|
||||
$ cryptsetup open /dev/nvme0n1p$PART root
|
||||
$ mkfs.btrfs /dev/mapper/root
|
||||
$ mount /dev/mapper/root /mnt
|
||||
```
|
||||
|
@ -21,7 +20,7 @@ $ mount --mkdir /dev/nvme0n1p1 /mnt/boot
|
|||
|
||||
### Installing packages on the device
|
||||
```
|
||||
$ pacstrap -K /mnt base linux-firmware linux amd-ucode patch dkms kmod btrfs-progs grub os-prober ntfs-3g efibootmgr efivar iwd nano sudo texinfo man-db man-pages
|
||||
$ pacstrap -K /mnt base linux-firmware linux amd-ucode patch dkms kmod btrfs-progs grub os-prober ntfs-3g efibootmgr efivar networkmanager iwd nano sudo texinfo man-db man-pages
|
||||
```
|
||||
|
||||
## Preparing for chroot
|
||||
|
@ -47,22 +46,23 @@ $ echo KEYMAP=ca > /etc/vconsole.conf
|
|||
```
|
||||
## Edit /etc/mkinitcpio.conf for LUKS
|
||||
```
|
||||
BINARIES=(btrfs)
|
||||
$ sed -i 's/BINARIES=.*/BINARIES=(btrfs)/' /etc/mkinitcpio.conf
|
||||
...
|
||||
HOOKS=(base udev autodetect modconf kms keyboard keymap consolefont block encrypt filesystems fsck)
|
||||
$ sed -i 's/HOOKS=.*/HOOKS=(base udev autodetect modconf kms keyboard keymap consolefont block encrypt filesystems fsck)/' /etc/mkinitcpio.conf
|
||||
```
|
||||
then run ```mkinitpcio -P```
|
||||
|
||||
## Grub install
|
||||
```
|
||||
$ grub-install --target=x86_64-efi --efi-directory=/boot --bootloader-id=arch
|
||||
$ grub-install --target=x86_64-efi --efi-directory=/boot --bootloader-id=wim --boot-directory=/boot/EFI/wim
|
||||
```
|
||||
|
||||
### Edit /etc/default/grub for LUKS
|
||||
```
|
||||
cryptdevice=UUID=??????:root root=/dev/mapper/root
|
||||
$ CRYPT="cryptdevice=$(blkid | sed -n 's/.*nvme0n1p'$PART': \(.*\) TYPE.*/\1/p'):root"
|
||||
$ sed -i 's#GRUB_CMDLINE_LINUX_DEFAULT.*#GRUB_CMDLINE_LINUX_DEFAULT="quiet loglevel 3 '$CRYPT' root=/dev/mapper/root"#' /etc/default/grub
|
||||
```
|
||||
make sure the UUID is the actual partition inside the LUKS container and run ```grub-mkconfig -o /boot/grub/grub.cfg```
|
||||
make sure the UUID is the actual partition inside the LUKS container and run ```grub-mkconfig -o /boot/EFI/wim/grub/grub.cfg```
|
||||
|
||||
we can now reboot to the installed Arch
|
||||
<br/><br/>
|
||||
|
@ -71,15 +71,24 @@ we can now reboot to the installed Arch
|
|||
|
||||
## Configure [internet](https://wiki.archlinux.org/title/Iwd) access
|
||||
```
|
||||
$ systemctl enable --now iwd systemd-networkd systemd-resolved systemd-timesyncd
|
||||
$ iwctl device list # check if powered on
|
||||
$ iwctl station wlan0 scan
|
||||
$ iwctl station wlan0 get-networks
|
||||
$ iwctl station wlan0 connect SSID
|
||||
$ systemctl enable --now NetworkManager systemd-networkd systemd-resolved systemd-timesyncd
|
||||
|
||||
$ cat << EOF >> /etc/NetworkManager/conf.d/wifi_backend.conf
|
||||
[device]
|
||||
wifi.backend=iwd
|
||||
EOF
|
||||
|
||||
$ cat << EOF >> /etc/iwd/main.conf
|
||||
[General]
|
||||
EnableNetworkConfiguration=true
|
||||
EOF
|
||||
|
||||
$ systemctl stop iwd
|
||||
$ systemctl restart NetworkManager
|
||||
$ iwctl device list # check if powered on
|
||||
$ iwctl station wlan0 scan
|
||||
$ iwctl station wlan0 get-networks
|
||||
$ iwctl station wlan0 connect $SSID
|
||||
```
|
||||
|
||||
### Configure systemd-resolved
|
||||
|
@ -87,6 +96,7 @@ EOF
|
|||
$ ln -sf /run/systemd/resolve/stub-resolv.conf /etc/resolv.conf
|
||||
$ sed -i 's/#DNS=.*/DNS=100.64.0.1/' /etc/systemd/resolved.conf
|
||||
$ sed -i 's/#FallbackDNS=.*/FallbackDNS=1.1.1.1/' /etc/systemd/resolved.conf
|
||||
$ sed -i 's/#DNSStubListener=.*/DNSStubListener=no/' /etc/systemd/resolved.conf
|
||||
```
|
||||
|
||||
### Configure reflector for mirror management of pacman
|
||||
|
@ -98,48 +108,35 @@ $ systemctl enable --now reflector.timer
|
|||
|
||||
## User management
|
||||
```
|
||||
$ useradd -m matt -G wheel
|
||||
$ useradd -m matt -G wheel,input
|
||||
$ passwd matt
|
||||
$ env EDITOR=nano visudo # set wheel to allow sudo commands with pass
|
||||
```
|
||||
|
||||
## A lot of packages to install
|
||||
```
|
||||
htop
|
||||
pkgfile
|
||||
plocate
|
||||
rsync
|
||||
tailscale
|
||||
tmux
|
||||
usbutils
|
||||
wget
|
||||
git
|
||||
curl
|
||||
devtools
|
||||
xorg
|
||||
xf86-video-amdgpu
|
||||
mesa
|
||||
lib32-mesa
|
||||
vulkan-radeon
|
||||
lib32-vulkan-radeon
|
||||
libva-mesa-driver
|
||||
lib32-libva-mesa-driver
|
||||
mesa-vdpau
|
||||
lib32-mesa-vdpau
|
||||
bash-completion
|
||||
fzf
|
||||
$ pacman -Sy htop pkgfile mlocate rsync tmux mosh usbutils wget git curl devtools mesa lib32-mesa vulkan-radeon lib32-vulkan-radeon libva-mesa-driver lib32-libva-mesa-driver mesa-vdpau lib32-mesa-vdpau bash-completion fzf
|
||||
$ pkgfile --update
|
||||
```
|
||||
|
||||
## Install [yay](https://github.com/Jguer/yay) and install tweaked NetworkManager
|
||||
## su matt
|
||||
|
||||
## Install paru
|
||||
```
|
||||
$ pacman -S --needed git base-devel
|
||||
$ git clone https://aur.archlinux.org/yay.git
|
||||
$ cd yay
|
||||
$ sudo pacman -S --needed git base-devel
|
||||
$ git clone https://aur.archlinux.org/paru-git.git
|
||||
$ cd paru-git
|
||||
$ makepkg -si
|
||||
|
||||
$ sudo sed -i 's/#Color/Color/' /etc/pacman.conf
|
||||
$ sed -i 's/#Color/Color/' /etc/pacman.conf
|
||||
$ sed -i 's/#IgnorePkg.*/IgnorePkg = linux-xanmod-anbox linux-xanmod-anbox-headers/' /etc/pacman.conf
|
||||
|
||||
$ yay -Sy networkmanager-iwd
|
||||
$ sudo systemctl enable NetworkManager
|
||||
$ cat << EOF >> /etc/paru.conf
|
||||
CombinedUpgrade
|
||||
BatchInstall
|
||||
BottomUp
|
||||
NoWarn = plymouth-theme-arch-elegant
|
||||
EOF
|
||||
```
|
||||
|
||||
## Audio
|
||||
|
@ -155,51 +152,13 @@ $ amixer sset Master unmute
|
|||
```
|
||||
$ yay -Sy pipewire-audio pipewire-alsa pipewire-pulse
|
||||
$ yay -R pulseaudio-alsa
|
||||
$ systemctl stop pulseaudio.service
|
||||
```
|
||||
|
||||
## Install Gnome
|
||||
```
|
||||
$ yay -Sy baobab cheese eog evince file-roller gdm gnome-backgrounds gnome-calculator gnome-calendar gnome-characters gnome-clocks gnome-color-manager gnome-console gnome-contacts gnome-control-center gnome-disk-utility gnome-font-viewer gnome-keyring gnome-logs gnome-menus gnome-music gnome-photos gnome-remote-desktop gnome-session gnome-settings-daemon gnome-shell gnome-shell-extensions gnome-system-monitor gnome-user-docs gnome-user-share gnome-video-effects grilo-plugins nautilus rygel simple-scan sushi totem tracker3-miners xdg-user-dirs-gtk yelp
|
||||
```
|
||||
|
||||
### Download some apps and extensions
|
||||
```
|
||||
$ yay -Sy dconf-editor evolution gnome-nettool gnome-tweaks gnome-usage gnome-themes-extra adwaita-dark extension-manager libayatana-appindicator tailscale-systray-git galaxybudsclient-bin hplip cups nextcloud-client grub-customizer
|
||||
|
||||
## Download extensions and restore from Extensions Sync :
|
||||
$ yay -Sy gnome-shell-extension-extensions-sync-git
|
||||
```
|
||||
|
||||
### Build and install my fork of Dash to Panel
|
||||
```
|
||||
$ cd /tmp
|
||||
$ git clone https://github.com/matt1432/dash-to-panel-touch-fix.git
|
||||
$ cd dash-to-panel-touch-fix/
|
||||
$ make install
|
||||
```
|
||||
|
||||
### Enable GDM to launch the Desktop Environment
|
||||
```
|
||||
$ systemctl enable --now gdm
|
||||
$ sudo systemctl stop pulseaudio.service
|
||||
$ systemctl --user enable --now pipewire-pulse.service
|
||||
```
|
||||
|
||||
## Fingerprint Sensor Hack
|
||||
### Flash [firmware](https://github.com/goodix-fp-linux-dev/goodix-fp-dump)
|
||||
```
|
||||
$ yay -Sy python pam-fprint-grosshack
|
||||
$ cd /tmp
|
||||
$ git clone --recurse-submodules https://github.com/goodix-fp-linux-dev/goodix-fp-dump.git
|
||||
$ cd goodix-fp-dump
|
||||
$ python -m venv .venv
|
||||
$ source .venv/bin/activate
|
||||
$ pip install -r requirements.txt
|
||||
$ sudo python3 run_55b4.py
|
||||
```
|
||||
|
||||
### Install experimental [drivers](https://github.com/TheWeirdDev/libfprint/tree/55b4-experimental)
|
||||
```
|
||||
$ yay -Sy libfprint-goodixtls-55x4 fprintd
|
||||
$ sudo systemctl enable --now fprintd
|
||||
$ fprintd-enroll
|
||||
```
|
||||
|
@ -210,33 +169,37 @@ add this to the top of every file in /etc/pam.d/ that you want ie. polkit-1, sud
|
|||
auth sufficient pam_fprintd_grosshack.so
|
||||
auth sufficient pam_unix.so try_first_pass nullok
|
||||
```
|
||||
OR (for gtklock and check for sddm)
|
||||
```
|
||||
auth sufficient pam_fprintd.so
|
||||
```
|
||||
|
||||
## Plymouth and Silent Boot
|
||||
By following the wiki pages on [watchdogs](https://wiki.archlinux.org/title/Improving_performance#Watchdogs), [silent booting](https://wiki.archlinux.org/title/Silent_boot#top-page) and [Plymouth](https://wiki.archlinux.org/title/Plymouth), I edited my grub config and mkinitcpio, installed and setup Plymouth, to get a satisfying booting experience
|
||||
```
|
||||
$ yay -Sy plymouth-git gdm-plymouth plymouth-theme-arch-charge-gdm-spinner
|
||||
$ yay -Sy plymouth-git
|
||||
```
|
||||
/etc/mkinitcpio.conf
|
||||
```
|
||||
MODULES=(amdgpu)
|
||||
HOOKS=(base udev plymouth plymouth-encrypt ...)
|
||||
$ sudo sed -i 's/MODULES=()/MODULES=(amdgpu)/' /etc/mkinitcpio.conf
|
||||
$ sudo sed -i 's/#COMPRESSION="lz4"/COMPRESSION="lz4"/' /etc/mkinitcpio.conf
|
||||
$ sudo sed -i 's/HOOKS=(.* /HOOKS=(base udev plymouth encrypt autodetect modconf kms keyboard keymap consolefont block filesystems fsck)/' /etc/mkinitcpio.conf
|
||||
COMPRESSION="lz4"
|
||||
```
|
||||
/etc/default/grub
|
||||
```
|
||||
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash loglevel=3 systemd.show_status=auto rd.udev.log_level=3 splash vt.global_cursor_default=0 nowatchdog ..."
|
||||
GRUB_TIMEOUT="1"
|
||||
GRUB_TIMEOUT_STYLE="hidden"
|
||||
GRUB_GFXMODE="1920x1200x32"
|
||||
#GRUB_DISABLE_RECOVERY=true
|
||||
GRUB_DISABLE_OS_PROBER="false"
|
||||
sudo sed -i 's/quiet loglevel 3/quiet splash loglevel=3 systemd.show_status=auto rd.udev.log_level=3 splash nowatchdog psi=1/' /etc/default/grub
|
||||
```
|
||||
Mute watchdog
|
||||
```
|
||||
$ echo blacklist sp5100_tco | sudo tee /etc/modprobe.d/disable-sp5100-watchdog.conf
|
||||
```
|
||||
Apply changes
|
||||
Apply changes [Theme](https://github.com/murkl/plymouth-theme-arch-elegant)
|
||||
```
|
||||
$ sudo plymouth-set-default-theme -R arch-charge-gdm-spinner
|
||||
$ git clone https://github.com/murkl/plymouth-theme-arch-elegant.git
|
||||
$ cd plymouth-theme-arch-elegant/aur
|
||||
$ makepkg -si
|
||||
$ sudo plymouth-set-default-theme -R arch-elegant
|
||||
$ sudo grub-mkconfig -o /boot/grub/grub.cfg
|
||||
$ sudo sed -i 's/echo/#ech~o/g' /boot/grub/grub.cfg
|
||||
```
|
||||
|
@ -249,49 +212,25 @@ $ echo MOZ_USE_XINPUT2 DEFAULT=1 | sudo tee -a /etc/security/pam_env.conf
|
|||
```
|
||||
then logout
|
||||
|
||||
### AUR Packages that are most likely needed
|
||||
### More Packages that are most likely needed
|
||||
```
|
||||
$ yay -Sy iio-sensor-proxy-git spotify-edge vscodium-bin
|
||||
run toinstall.sh script
|
||||
$ sudo reboot
|
||||
```
|
||||
|
||||
### Flatpak
|
||||
```
|
||||
$ flatpak install com.unity.UnityHub com.vscodium.codium org.freedesktop.Sdk.Extension.dotnet6 org.freedesktop.Sdk.Extension.mono6 com.github.iwalton3.jellyfin-media-player com.github.tchx84.Flatseal org.gtk.Gtk3theme.Breeze-Dark ch.openboard.OpenBoard
|
||||
$ FLATPAK_ENABLE_SDK_EXT=dotnet6,mono6 flatpak run com.vscodium.codium
|
||||
$ flatpak install com.github.iwalton3.jellyfin-media-player com.github.tchx84.Flatseal xournalpp stemlink
|
||||
$ sudo flatpak override --filesystem=xdg-config/gtk-3.0
|
||||
```
|
||||
|
||||
### vscodium on Flatpak
|
||||
```
|
||||
$ CD=$(pwd)
|
||||
$ mkdir /tmp/host && cd /tmp/host
|
||||
$ curl -s https://api.github.com/repos/1player/host-spawn/releases \
|
||||
| grep -m 1 "browser_download_url.*x86_64" \
|
||||
| cut -d : -f 2,3 \
|
||||
| tr -d \" \
|
||||
| wget -qi -
|
||||
$ mv * host-spawn
|
||||
$ sudo chmod 755 host-spawn
|
||||
|
||||
$ mkdir ~/bin
|
||||
$ sudo mv host-spawn /home/matt/bin
|
||||
|
||||
$ cd $CD
|
||||
$ cp ../conf/settings.json ~/.var/app/com.vscodium.codium/config/VSCodium/User/
|
||||
$ sudo ln -s /home/matt/bin/host-spawn /var/lib/flatpak/app/com.vscodium.codium/current/**/files/bin/git-lfs
|
||||
|
||||
$ sudo mv /var/lib/flatpak/app/com.vscodium.codium/current/active/export/share/applications/com.vscodium.codium.desktop{,.bak}
|
||||
$ sudo mv /var/lib/flatpak/exports/share/applications/com.vscodium.codium.desktop{,.bak}
|
||||
```
|
||||
|
||||
## Finally, install dotfiles
|
||||
### get access to repo first
|
||||
```
|
||||
$ mkdir ~/git && cd ~/git
|
||||
$ git clone git@git.nelim.org:matt1432/dotfiles.git
|
||||
$ cd dotfiles
|
||||
$ bash getenv.sh
|
||||
$ sudo bash setup.sh
|
||||
$ sudo chown matt:matt /home/matt/.env
|
||||
$ sed -i 's/USER=""/USER="matt"/'
|
||||
$ sudo bash fzf.sh /usr/share/fzf
|
||||
```
|
||||
|
|
File diff suppressed because one or more lines are too long
507
conf/locale.gen
507
conf/locale.gen
|
@ -1,507 +0,0 @@
|
|||
# Configuration file for locale-gen
|
||||
#
|
||||
# lists of locales that are to be generated by the locale-gen command.
|
||||
#
|
||||
# Each line is of the form:
|
||||
#
|
||||
# <locale> <charset>
|
||||
#
|
||||
# where <locale> is one of the locales given in /usr/share/i18n/locales
|
||||
# and <charset> is one of the character sets listed in /usr/share/i18n/charmaps
|
||||
#
|
||||
# The locale-gen command will generate all the locales,
|
||||
# placing them in /usr/lib/locale.
|
||||
#
|
||||
# A list of supported locales is given in /usr/share/i18n/SUPPORTED
|
||||
# and is included in this file. Uncomment the needed locales below.
|
||||
#
|
||||
#aa_DJ.UTF-8 UTF-8
|
||||
#aa_DJ ISO-8859-1
|
||||
#aa_ER UTF-8
|
||||
#aa_ER@saaho UTF-8
|
||||
#aa_ET UTF-8
|
||||
#af_ZA.UTF-8 UTF-8
|
||||
#af_ZA ISO-8859-1
|
||||
#agr_PE UTF-8
|
||||
#ak_GH UTF-8
|
||||
#am_ET UTF-8
|
||||
#an_ES.UTF-8 UTF-8
|
||||
#an_ES ISO-8859-15
|
||||
#anp_IN UTF-8
|
||||
#ar_AE.UTF-8 UTF-8
|
||||
#ar_AE ISO-8859-6
|
||||
#ar_BH.UTF-8 UTF-8
|
||||
#ar_BH ISO-8859-6
|
||||
#ar_DZ.UTF-8 UTF-8
|
||||
#ar_DZ ISO-8859-6
|
||||
#ar_EG.UTF-8 UTF-8
|
||||
#ar_EG ISO-8859-6
|
||||
#ar_IN UTF-8
|
||||
#ar_IQ.UTF-8 UTF-8
|
||||
#ar_IQ ISO-8859-6
|
||||
#ar_JO.UTF-8 UTF-8
|
||||
#ar_JO ISO-8859-6
|
||||
#ar_KW.UTF-8 UTF-8
|
||||
#ar_KW ISO-8859-6
|
||||
#ar_LB.UTF-8 UTF-8
|
||||
#ar_LB ISO-8859-6
|
||||
#ar_LY.UTF-8 UTF-8
|
||||
#ar_LY ISO-8859-6
|
||||
#ar_MA.UTF-8 UTF-8
|
||||
#ar_MA ISO-8859-6
|
||||
#ar_OM.UTF-8 UTF-8
|
||||
#ar_OM ISO-8859-6
|
||||
#ar_QA.UTF-8 UTF-8
|
||||
#ar_QA ISO-8859-6
|
||||
#ar_SA.UTF-8 UTF-8
|
||||
#ar_SA ISO-8859-6
|
||||
#ar_SD.UTF-8 UTF-8
|
||||
#ar_SD ISO-8859-6
|
||||
#ar_SS UTF-8
|
||||
#ar_SY.UTF-8 UTF-8
|
||||
#ar_SY ISO-8859-6
|
||||
#ar_TN.UTF-8 UTF-8
|
||||
#ar_TN ISO-8859-6
|
||||
#ar_YE.UTF-8 UTF-8
|
||||
#ar_YE ISO-8859-6
|
||||
#ayc_PE UTF-8
|
||||
#az_AZ UTF-8
|
||||
#az_IR UTF-8
|
||||
#as_IN UTF-8
|
||||
#ast_ES.UTF-8 UTF-8
|
||||
#ast_ES ISO-8859-15
|
||||
#be_BY.UTF-8 UTF-8
|
||||
#be_BY CP1251
|
||||
#be_BY@latin UTF-8
|
||||
#bem_ZM UTF-8
|
||||
#ber_DZ UTF-8
|
||||
#ber_MA UTF-8
|
||||
#bg_BG.UTF-8 UTF-8
|
||||
#bg_BG CP1251
|
||||
#bhb_IN.UTF-8 UTF-8
|
||||
#bho_IN UTF-8
|
||||
#bho_NP UTF-8
|
||||
#bi_VU UTF-8
|
||||
#bn_BD UTF-8
|
||||
#bn_IN UTF-8
|
||||
#bo_CN UTF-8
|
||||
#bo_IN UTF-8
|
||||
#br_FR.UTF-8 UTF-8
|
||||
#br_FR ISO-8859-1
|
||||
#br_FR@euro ISO-8859-15
|
||||
#brx_IN UTF-8
|
||||
#bs_BA.UTF-8 UTF-8
|
||||
#bs_BA ISO-8859-2
|
||||
#byn_ER UTF-8
|
||||
#ca_AD.UTF-8 UTF-8
|
||||
#ca_AD ISO-8859-15
|
||||
#ca_ES.UTF-8 UTF-8
|
||||
#ca_ES ISO-8859-1
|
||||
#ca_ES@euro ISO-8859-15
|
||||
#ca_ES@valencia UTF-8
|
||||
ca_FR.UTF-8 UTF-8
|
||||
#ca_FR ISO-8859-15
|
||||
#ca_IT.UTF-8 UTF-8
|
||||
#ca_IT ISO-8859-15
|
||||
#ce_RU UTF-8
|
||||
#chr_US UTF-8
|
||||
#ckb_IQ UTF-8
|
||||
#cmn_TW UTF-8
|
||||
#crh_UA UTF-8
|
||||
#cs_CZ.UTF-8 UTF-8
|
||||
#cs_CZ ISO-8859-2
|
||||
#csb_PL UTF-8
|
||||
#cv_RU UTF-8
|
||||
#cy_GB.UTF-8 UTF-8
|
||||
#cy_GB ISO-8859-14
|
||||
#da_DK.UTF-8 UTF-8
|
||||
#da_DK ISO-8859-1
|
||||
#de_AT.UTF-8 UTF-8
|
||||
#de_AT ISO-8859-1
|
||||
#de_AT@euro ISO-8859-15
|
||||
#de_BE.UTF-8 UTF-8
|
||||
#de_BE ISO-8859-1
|
||||
#de_BE@euro ISO-8859-15
|
||||
#de_CH.UTF-8 UTF-8
|
||||
#de_CH ISO-8859-1
|
||||
#de_DE.UTF-8 UTF-8
|
||||
#de_DE ISO-8859-1
|
||||
#de_DE@euro ISO-8859-15
|
||||
#de_IT.UTF-8 UTF-8
|
||||
#de_IT ISO-8859-1
|
||||
#de_LI.UTF-8 UTF-8
|
||||
#de_LU.UTF-8 UTF-8
|
||||
#de_LU ISO-8859-1
|
||||
#de_LU@euro ISO-8859-15
|
||||
#doi_IN UTF-8
|
||||
#dsb_DE UTF-8
|
||||
#dv_MV UTF-8
|
||||
#dz_BT UTF-8
|
||||
#el_GR.UTF-8 UTF-8
|
||||
#el_GR ISO-8859-7
|
||||
#el_GR@euro ISO-8859-7
|
||||
#el_CY.UTF-8 UTF-8
|
||||
#el_CY ISO-8859-7
|
||||
#en_AG UTF-8
|
||||
#en_AU.UTF-8 UTF-8
|
||||
#en_AU ISO-8859-1
|
||||
#en_BW.UTF-8 UTF-8
|
||||
#en_BW ISO-8859-1
|
||||
en_CA.UTF-8 UTF-8
|
||||
#en_CA ISO-8859-1
|
||||
#en_DK.UTF-8 UTF-8
|
||||
#en_DK ISO-8859-1
|
||||
#en_GB.UTF-8 UTF-8
|
||||
#en_GB ISO-8859-1
|
||||
#en_HK.UTF-8 UTF-8
|
||||
#en_HK ISO-8859-1
|
||||
#en_IE.UTF-8 UTF-8
|
||||
#en_IE ISO-8859-1
|
||||
#en_IE@euro ISO-8859-15
|
||||
#en_IL UTF-8
|
||||
#en_IN UTF-8
|
||||
#en_NG UTF-8
|
||||
#en_NZ.UTF-8 UTF-8
|
||||
#en_NZ ISO-8859-1
|
||||
#en_PH.UTF-8 UTF-8
|
||||
#en_PH ISO-8859-1
|
||||
#en_SC.UTF-8 UTF-8
|
||||
#en_SG.UTF-8 UTF-8
|
||||
#en_SG ISO-8859-1
|
||||
en_US.UTF-8 UTF-8
|
||||
#en_US ISO-8859-1
|
||||
#en_ZA.UTF-8 UTF-8
|
||||
#en_ZA ISO-8859-1
|
||||
#en_ZM UTF-8
|
||||
#en_ZW.UTF-8 UTF-8
|
||||
#en_ZW ISO-8859-1
|
||||
#eo UTF-8
|
||||
#es_AR.UTF-8 UTF-8
|
||||
#es_AR ISO-8859-1
|
||||
#es_BO.UTF-8 UTF-8
|
||||
#es_BO ISO-8859-1
|
||||
#es_CL.UTF-8 UTF-8
|
||||
#es_CL ISO-8859-1
|
||||
#es_CO.UTF-8 UTF-8
|
||||
#es_CO ISO-8859-1
|
||||
#es_CR.UTF-8 UTF-8
|
||||
#es_CR ISO-8859-1
|
||||
#es_CU UTF-8
|
||||
#es_DO.UTF-8 UTF-8
|
||||
#es_DO ISO-8859-1
|
||||
#es_EC.UTF-8 UTF-8
|
||||
#es_EC ISO-8859-1
|
||||
#es_ES.UTF-8 UTF-8
|
||||
#es_ES ISO-8859-1
|
||||
#es_ES@euro ISO-8859-15
|
||||
#es_GT.UTF-8 UTF-8
|
||||
#es_GT ISO-8859-1
|
||||
#es_HN.UTF-8 UTF-8
|
||||
#es_HN ISO-8859-1
|
||||
#es_MX.UTF-8 UTF-8
|
||||
#es_MX ISO-8859-1
|
||||
#es_NI.UTF-8 UTF-8
|
||||
#es_NI ISO-8859-1
|
||||
#es_PA.UTF-8 UTF-8
|
||||
#es_PA ISO-8859-1
|
||||
#es_PE.UTF-8 UTF-8
|
||||
#es_PE ISO-8859-1
|
||||
#es_PR.UTF-8 UTF-8
|
||||
#es_PR ISO-8859-1
|
||||
#es_PY.UTF-8 UTF-8
|
||||
#es_PY ISO-8859-1
|
||||
#es_SV.UTF-8 UTF-8
|
||||
#es_SV ISO-8859-1
|
||||
#es_US.UTF-8 UTF-8
|
||||
#es_US ISO-8859-1
|
||||
#es_UY.UTF-8 UTF-8
|
||||
#es_UY ISO-8859-1
|
||||
#es_VE.UTF-8 UTF-8
|
||||
#es_VE ISO-8859-1
|
||||
#et_EE.UTF-8 UTF-8
|
||||
#et_EE ISO-8859-1
|
||||
#et_EE.ISO-8859-15 ISO-8859-15
|
||||
#eu_ES.UTF-8 UTF-8
|
||||
#eu_ES ISO-8859-1
|
||||
#eu_ES@euro ISO-8859-15
|
||||
#fa_IR UTF-8
|
||||
#ff_SN UTF-8
|
||||
#fi_FI.UTF-8 UTF-8
|
||||
#fi_FI ISO-8859-1
|
||||
#fi_FI@euro ISO-8859-15
|
||||
#fil_PH UTF-8
|
||||
#fo_FO.UTF-8 UTF-8
|
||||
#fo_FO ISO-8859-1
|
||||
#fr_BE.UTF-8 UTF-8
|
||||
#fr_BE ISO-8859-1
|
||||
#fr_BE@euro ISO-8859-15
|
||||
fr_CA.UTF-8 UTF-8
|
||||
#fr_CA ISO-8859-1
|
||||
#fr_CH.UTF-8 UTF-8
|
||||
#fr_CH ISO-8859-1
|
||||
#fr_FR.UTF-8 UTF-8
|
||||
#fr_FR ISO-8859-1
|
||||
#fr_FR@euro ISO-8859-15
|
||||
#fr_LU.UTF-8 UTF-8
|
||||
#fr_LU ISO-8859-1
|
||||
#fr_LU@euro ISO-8859-15
|
||||
#fur_IT UTF-8
|
||||
#fy_NL UTF-8
|
||||
#fy_DE UTF-8
|
||||
#ga_IE.UTF-8 UTF-8
|
||||
#ga_IE ISO-8859-1
|
||||
#ga_IE@euro ISO-8859-15
|
||||
#gd_GB.UTF-8 UTF-8
|
||||
#gd_GB ISO-8859-15
|
||||
#gez_ER UTF-8
|
||||
#gez_ER@abegede UTF-8
|
||||
#gez_ET UTF-8
|
||||
#gez_ET@abegede UTF-8
|
||||
#gl_ES.UTF-8 UTF-8
|
||||
#gl_ES ISO-8859-1
|
||||
#gl_ES@euro ISO-8859-15
|
||||
#gu_IN UTF-8
|
||||
#gv_GB.UTF-8 UTF-8
|
||||
#gv_GB ISO-8859-1
|
||||
#ha_NG UTF-8
|
||||
#hak_TW UTF-8
|
||||
#he_IL.UTF-8 UTF-8
|
||||
#he_IL ISO-8859-8
|
||||
#hi_IN UTF-8
|
||||
#hif_FJ UTF-8
|
||||
#hne_IN UTF-8
|
||||
#hr_HR.UTF-8 UTF-8
|
||||
#hr_HR ISO-8859-2
|
||||
#hsb_DE ISO-8859-2
|
||||
#hsb_DE.UTF-8 UTF-8
|
||||
#ht_HT UTF-8
|
||||
#hu_HU.UTF-8 UTF-8
|
||||
#hu_HU ISO-8859-2
|
||||
#hy_AM UTF-8
|
||||
#hy_AM.ARMSCII-8 ARMSCII-8
|
||||
#ia_FR UTF-8
|
||||
#id_ID.UTF-8 UTF-8
|
||||
#id_ID ISO-8859-1
|
||||
#ig_NG UTF-8
|
||||
#ik_CA UTF-8
|
||||
#is_IS.UTF-8 UTF-8
|
||||
#is_IS ISO-8859-1
|
||||
#it_CH.UTF-8 UTF-8
|
||||
#it_CH ISO-8859-1
|
||||
#it_IT.UTF-8 UTF-8
|
||||
#it_IT ISO-8859-1
|
||||
#it_IT@euro ISO-8859-15
|
||||
#iu_CA UTF-8
|
||||
#ja_JP.EUC-JP EUC-JP
|
||||
#ja_JP.UTF-8 UTF-8
|
||||
#ka_GE.UTF-8 UTF-8
|
||||
#ka_GE GEORGIAN-PS
|
||||
#kab_DZ UTF-8
|
||||
#kk_KZ.UTF-8 UTF-8
|
||||
#kk_KZ PT154
|
||||
#kl_GL.UTF-8 UTF-8
|
||||
#kl_GL ISO-8859-1
|
||||
#km_KH UTF-8
|
||||
#kn_IN UTF-8
|
||||
#ko_KR.EUC-KR EUC-KR
|
||||
#ko_KR.UTF-8 UTF-8
|
||||
#kok_IN UTF-8
|
||||
#ks_IN UTF-8
|
||||
#ks_IN@devanagari UTF-8
|
||||
#ku_TR.UTF-8 UTF-8
|
||||
#ku_TR ISO-8859-9
|
||||
#kw_GB.UTF-8 UTF-8
|
||||
#kw_GB ISO-8859-1
|
||||
#ky_KG UTF-8
|
||||
#lb_LU UTF-8
|
||||
#lg_UG.UTF-8 UTF-8
|
||||
#lg_UG ISO-8859-10
|
||||
#li_BE UTF-8
|
||||
#li_NL UTF-8
|
||||
#lij_IT UTF-8
|
||||
#ln_CD UTF-8
|
||||
#lo_LA UTF-8
|
||||
#lt_LT.UTF-8 UTF-8
|
||||
#lt_LT ISO-8859-13
|
||||
#lv_LV.UTF-8 UTF-8
|
||||
#lv_LV ISO-8859-13
|
||||
#lzh_TW UTF-8
|
||||
#mag_IN UTF-8
|
||||
#mai_IN UTF-8
|
||||
#mai_NP UTF-8
|
||||
#mfe_MU UTF-8
|
||||
#mg_MG.UTF-8 UTF-8
|
||||
#mg_MG ISO-8859-15
|
||||
#mhr_RU UTF-8
|
||||
#mi_NZ.UTF-8 UTF-8
|
||||
#mi_NZ ISO-8859-13
|
||||
#miq_NI UTF-8
|
||||
#mjw_IN UTF-8
|
||||
#mk_MK.UTF-8 UTF-8
|
||||
#mk_MK ISO-8859-5
|
||||
#ml_IN UTF-8
|
||||
#mn_MN UTF-8
|
||||
#mni_IN UTF-8
|
||||
#mnw_MM UTF-8
|
||||
#mr_IN UTF-8
|
||||
#ms_MY.UTF-8 UTF-8
|
||||
#ms_MY ISO-8859-1
|
||||
#mt_MT.UTF-8 UTF-8
|
||||
#mt_MT ISO-8859-3
|
||||
#my_MM UTF-8
|
||||
#nan_TW UTF-8
|
||||
#nan_TW@latin UTF-8
|
||||
#nb_NO.UTF-8 UTF-8
|
||||
#nb_NO ISO-8859-1
|
||||
#nds_DE UTF-8
|
||||
#nds_NL UTF-8
|
||||
#ne_NP UTF-8
|
||||
#nhn_MX UTF-8
|
||||
#niu_NU UTF-8
|
||||
#niu_NZ UTF-8
|
||||
#nl_AW UTF-8
|
||||
#nl_BE.UTF-8 UTF-8
|
||||
#nl_BE ISO-8859-1
|
||||
#nl_BE@euro ISO-8859-15
|
||||
#nl_NL.UTF-8 UTF-8
|
||||
#nl_NL ISO-8859-1
|
||||
#nl_NL@euro ISO-8859-15
|
||||
#nn_NO.UTF-8 UTF-8
|
||||
#nn_NO ISO-8859-1
|
||||
#nr_ZA UTF-8
|
||||
#nso_ZA UTF-8
|
||||
#oc_FR.UTF-8 UTF-8
|
||||
#oc_FR ISO-8859-1
|
||||
#om_ET UTF-8
|
||||
#om_KE.UTF-8 UTF-8
|
||||
#om_KE ISO-8859-1
|
||||
#or_IN UTF-8
|
||||
#os_RU UTF-8
|
||||
#pa_IN UTF-8
|
||||
#pa_PK UTF-8
|
||||
#pap_AW UTF-8
|
||||
#pap_CW UTF-8
|
||||
#pl_PL.UTF-8 UTF-8
|
||||
#pl_PL ISO-8859-2
|
||||
#ps_AF UTF-8
|
||||
#pt_BR.UTF-8 UTF-8
|
||||
#pt_BR ISO-8859-1
|
||||
#pt_PT.UTF-8 UTF-8
|
||||
#pt_PT ISO-8859-1
|
||||
#pt_PT@euro ISO-8859-15
|
||||
#quz_PE UTF-8
|
||||
#raj_IN UTF-8
|
||||
#rif_MA UTF-8
|
||||
#ro_RO.UTF-8 UTF-8
|
||||
#ro_RO ISO-8859-2
|
||||
#ru_RU.KOI8-R KOI8-R
|
||||
#ru_RU.UTF-8 UTF-8
|
||||
#ru_RU ISO-8859-5
|
||||
#ru_UA.UTF-8 UTF-8
|
||||
#ru_UA KOI8-U
|
||||
#rw_RW UTF-8
|
||||
#sa_IN UTF-8
|
||||
#sah_RU UTF-8
|
||||
#sat_IN UTF-8
|
||||
#sc_IT UTF-8
|
||||
#sd_IN UTF-8
|
||||
#sd_IN@devanagari UTF-8
|
||||
#se_NO UTF-8
|
||||
#sgs_LT UTF-8
|
||||
#shn_MM UTF-8
|
||||
#shs_CA UTF-8
|
||||
#si_LK UTF-8
|
||||
#sid_ET UTF-8
|
||||
#sk_SK.UTF-8 UTF-8
|
||||
#sk_SK ISO-8859-2
|
||||
#sl_SI.UTF-8 UTF-8
|
||||
#sl_SI ISO-8859-2
|
||||
#sm_WS UTF-8
|
||||
#so_DJ.UTF-8 UTF-8
|
||||
#so_DJ ISO-8859-1
|
||||
#so_ET UTF-8
|
||||
#so_KE.UTF-8 UTF-8
|
||||
#so_KE ISO-8859-1
|
||||
#so_SO.UTF-8 UTF-8
|
||||
#so_SO ISO-8859-1
|
||||
#sq_AL.UTF-8 UTF-8
|
||||
#sq_AL ISO-8859-1
|
||||
#sq_MK UTF-8
|
||||
#sr_ME UTF-8
|
||||
#sr_RS UTF-8
|
||||
#sr_RS@latin UTF-8
|
||||
#ss_ZA UTF-8
|
||||
#st_ZA.UTF-8 UTF-8
|
||||
#st_ZA ISO-8859-1
|
||||
#sv_FI.UTF-8 UTF-8
|
||||
#sv_FI ISO-8859-1
|
||||
#sv_FI@euro ISO-8859-15
|
||||
#sv_SE.UTF-8 UTF-8
|
||||
#sv_SE ISO-8859-1
|
||||
#sw_KE UTF-8
|
||||
#sw_TZ UTF-8
|
||||
#syr UTF-8
|
||||
#szl_PL UTF-8
|
||||
#ta_IN UTF-8
|
||||
#ta_LK UTF-8
|
||||
#tcy_IN.UTF-8 UTF-8
|
||||
#te_IN UTF-8
|
||||
#tg_TJ.UTF-8 UTF-8
|
||||
#tg_TJ KOI8-T
|
||||
#th_TH.UTF-8 UTF-8
|
||||
#th_TH TIS-620
|
||||
#the_NP UTF-8
|
||||
#ti_ER UTF-8
|
||||
#ti_ET UTF-8
|
||||
#tig_ER UTF-8
|
||||
#tk_TM UTF-8
|
||||
#tl_PH.UTF-8 UTF-8
|
||||
#tl_PH ISO-8859-1
|
||||
#tn_ZA UTF-8
|
||||
#to_TO UTF-8
|
||||
#tpi_PG UTF-8
|
||||
#tr_CY.UTF-8 UTF-8
|
||||
#tr_CY ISO-8859-9
|
||||
#tr_TR.UTF-8 UTF-8
|
||||
#tr_TR ISO-8859-9
|
||||
#ts_ZA UTF-8
|
||||
#tt_RU UTF-8
|
||||
#tt_RU@iqtelif UTF-8
|
||||
#ug_CN UTF-8
|
||||
#uk_UA.UTF-8 UTF-8
|
||||
#uk_UA KOI8-U
|
||||
#unm_US UTF-8
|
||||
#ur_IN UTF-8
|
||||
#ur_PK UTF-8
|
||||
#uz_UZ.UTF-8 UTF-8
|
||||
#uz_UZ ISO-8859-1
|
||||
#uz_UZ@cyrillic UTF-8
|
||||
#ve_ZA UTF-8
|
||||
#vi_VN UTF-8
|
||||
#wa_BE ISO-8859-1
|
||||
#wa_BE@euro ISO-8859-15
|
||||
#wa_BE.UTF-8 UTF-8
|
||||
#wae_CH UTF-8
|
||||
#wal_ET UTF-8
|
||||
#wo_SN UTF-8
|
||||
#xh_ZA.UTF-8 UTF-8
|
||||
#xh_ZA ISO-8859-1
|
||||
#yi_US.UTF-8 UTF-8
|
||||
#yi_US CP1255
|
||||
#yo_NG UTF-8
|
||||
#yue_HK UTF-8
|
||||
#yuw_PG UTF-8
|
||||
#zh_CN.GB18030 GB18030
|
||||
#zh_CN.GBK GBK
|
||||
#zh_CN.UTF-8 UTF-8
|
||||
#zh_CN GB2312
|
||||
#zh_HK.UTF-8 UTF-8
|
||||
#zh_HK BIG5-HKSCS
|
||||
#zh_SG.UTF-8 UTF-8
|
||||
#zh_SG.GBK GBK
|
||||
#zh_SG GB2312
|
||||
#zh_TW.EUC-TW EUC-TW
|
||||
#zh_TW.UTF-8 UTF-8
|
||||
#zh_TW BIG5
|
||||
#zu_ZA.UTF-8 UTF-8
|
||||
#zu_ZA ISO-8859-1
|
1188
conf/pkg.list
1188
conf/pkg.list
File diff suppressed because it is too large
Load diff
129
conf/pkgs.log
Normal file
129
conf/pkgs.log
Normal file
|
@ -0,0 +1,129 @@
|
|||
acpi
|
||||
alacritty
|
||||
asp
|
||||
bat
|
||||
blueman
|
||||
bluez
|
||||
bluez-plugins
|
||||
bluez-tools
|
||||
bluez-utils
|
||||
brightnessctl
|
||||
cliphist
|
||||
cpio
|
||||
cups
|
||||
discord
|
||||
doctest
|
||||
dolphin
|
||||
dosfstools
|
||||
exfatprogs
|
||||
f2fs-tools
|
||||
ffmpeg-compat-57
|
||||
ffmpegthumbs
|
||||
firefox
|
||||
flatery-icon-theme-git
|
||||
fwupd
|
||||
galaxybudsclient-bin
|
||||
gimp
|
||||
git-lfs
|
||||
gnome-bluetooth-3.0
|
||||
gnome-calculator
|
||||
gnome-keyring
|
||||
gnome-themes-extra
|
||||
gparted
|
||||
grim
|
||||
grub-customizer
|
||||
gtklock
|
||||
gtklock-playerctl-module
|
||||
gtklock-powerbar-module
|
||||
gtklock-userinfo-module
|
||||
hplip
|
||||
hyprpaper-git
|
||||
iio-sensor-proxy-git
|
||||
jdk-temurin
|
||||
kde-cli-tools
|
||||
kdegraphics-thumbnailers
|
||||
kimageformats
|
||||
kio-admin
|
||||
kvantum
|
||||
libinput-gestures-git
|
||||
libreoffice-fresh
|
||||
light
|
||||
lostfiles
|
||||
nano
|
||||
neofetch
|
||||
neovim-git
|
||||
network-manager-applet
|
||||
nextcloud-client
|
||||
nilfs-utils
|
||||
nm-connection-editor
|
||||
nwg-look-bin
|
||||
otf-font-awesome
|
||||
pavucontrol
|
||||
photoqt
|
||||
pkgfile
|
||||
pokemon-colorscripts-git
|
||||
polkit-kde-agent
|
||||
progress
|
||||
python-evdev
|
||||
python-libevdev
|
||||
python-pyclip
|
||||
python-pyqt5
|
||||
python-pyqt5-3d
|
||||
python-pyqt5-chart
|
||||
python-pyqt5-datavisualization
|
||||
python-pyqt5-networkauth
|
||||
python-pyqt5-purchasing
|
||||
python-pyqt5-webengine
|
||||
python-pyqt6
|
||||
python-pyqt6-3d
|
||||
python-pyqt6-charts
|
||||
python-pyqt6-datavisualization
|
||||
python-pyqt6-networkauth
|
||||
python-pyqt6-webengine
|
||||
python-uinput
|
||||
qt5-charts
|
||||
qt5-imageformats
|
||||
qt5ct
|
||||
reiserfsprogs
|
||||
ripgrep
|
||||
rofi-lbonn-wayland-only-git
|
||||
rustup
|
||||
sddm-git
|
||||
seahorse
|
||||
slurp
|
||||
spicetify-cli-git
|
||||
spicetify-themes-git
|
||||
spotify-snapstore
|
||||
spotifywm-git
|
||||
squeekboard-git
|
||||
swappy-git
|
||||
swayidle
|
||||
swaync-git
|
||||
swayosd-git
|
||||
tablet-mode
|
||||
tlp
|
||||
ttf-font-awesome
|
||||
ttf-go-nerd
|
||||
ttf-jetbrains-mono
|
||||
ttf-jetbrains-mono-nerd
|
||||
ttf-meslo-nerd-font-powerlevel10k
|
||||
ttf-ms-win11-auto
|
||||
ttf-nerd-fonts-symbols
|
||||
ttf-nerd-fonts-symbols-common
|
||||
ttf-space-mono-nerd
|
||||
ttf-ubuntu-font-family
|
||||
ttf-ubuntu-nerd
|
||||
tutanota-desktop-bin
|
||||
waybar-hyprland-git
|
||||
waydroid-git
|
||||
wev
|
||||
wine-staging
|
||||
winetricks
|
||||
wl-clip-persist-git
|
||||
wl-color-picker
|
||||
xclip
|
||||
xdg-desktop-portal-hyprland-git
|
||||
xdg-utils
|
||||
xorg-xwayland
|
||||
zathura-pdf-mupdf
|
||||
zenity
|
|
@ -1,19 +0,0 @@
|
|||
{
|
||||
"terminal.integrated.defaultProfile.linux": "bash",
|
||||
"terminal.integrated.profiles.linux": {
|
||||
"bash": {
|
||||
"path": "/home/matt/bin/host-spawn",
|
||||
"icon": "terminal"
|
||||
}
|
||||
},
|
||||
"editor.wordWrap": "on",
|
||||
"omnisharp.useGlobalMono": "always",
|
||||
"workbench.startupEditor": "none",
|
||||
"update.showReleaseNotes": false,
|
||||
"json.schemas": [],
|
||||
"git.fetchOnPull": true,
|
||||
"git.enableSmartCommit": true,
|
||||
"git.autofetch": true,
|
||||
"diffEditor.ignoreTrimWhitespace": true,
|
||||
"omnisharp.enableImportCompletion": true
|
||||
}
|
1
conf/toinstall.sh
Executable file
1
conf/toinstall.sh
Executable file
|
@ -0,0 +1 @@
|
|||
yay -Sy acpi alacritty asp bat blueman bluez bluez-plugins bluez-tools bluez-utils brightnessctl cliphist cpio cups discord doctest dolphin dosfstools exfatprogs f2fs-tools ffmpeg-compat-57 ffmpegthumbs firefox flatery-icon-theme-git fwupd galaxybudsclient-bin gimp git-lfs gnome-bluetooth-3.0 gnome-calculator gnome-keyring gnome-themes-extra gparted grim grub-customizer gtklock gtklock-playerctl-module gtklock-powerbar-module gtklock-userinfo-module hplip hyprpaper-git iio-sensor-proxy-git jdk-temurin kde-cli-tools kdegraphics-thumbnailers kimageformats kio-admin kvantum libinput-gestures-git libreoffice-fresh light lostfiles nano neofetch neovim-git network-manager-applet nextcloud-client nilfs-utils nm-connection-editor nwg-look-bin otf-font-awesome pavucontrol photoqt pkgfile pokemon-colorscripts-git polkit-kde-agent progress python-evdev python-libevdev python-pyclip python-pyqt5 python-pyqt5-3d python-pyqt5-chart python-pyqt5-datavisualization python-pyqt5-networkauth python-pyqt5-purchasing python-pyqt5-webengine python-pyqt6 python-pyqt6-3d python-pyqt6-charts python-pyqt6-datavisualization python-pyqt6-networkauth python-pyqt6-webengine python-uinput qt5-charts qt5-imageformats qt5ct reiserfsprogs ripgrep rofi-lbonn-wayland-only-git rustup sddm-git seahorse slurp spicetify-cli-git spicetify-themes-git spotify-snapstore spotifywm-git squeekboard-git swappy-git swayidle swaync-git swayosd-git tablet-mode tlp ttf-font-awesome ttf-go-nerd ttf-jetbrains-mono ttf-jetbrains-mono-nerd ttf-meslo-nerd-font-powerlevel10k ttf-ms-win11-auto ttf-nerd-fonts-symbols ttf-nerd-fonts-symbols-common ttf-space-mono-nerd ttf-ubuntu-font-family ttf-ubuntu-nerd tutanota-desktop-bin waybar-hyprland-git waydroid-git wev wine-staging winetricks wl-clip-persist-git wl-color-picker xclip xdg-desktop-portal-hyprland-git xdg-utils xorg-xwayland zathura-pdf-mupdf zenity
|
|
@ -1,18 +0,0 @@
|
|||
#!/bin/sh
|
||||
PART="$1"
|
||||
KEY="$2"
|
||||
|
||||
loadkeys ca
|
||||
|
||||
cryptsetup -y -v luksFormat --type luks1 /dev/nvme0n1p$PART
|
||||
cryptsetup open /dev/nvme0n1p$PART root
|
||||
mkfs.btrfs /dev/mapper/root
|
||||
mount /dev/mapper/root /mnt
|
||||
mount --mkdir /dev/nvme0n1p1 /mnt/boot
|
||||
|
||||
pacman -Syu
|
||||
|
||||
pacstrap -K /mnt base linux-firmware linux amd-ucode patch dkms kmod btrfs-progs grub os-prober ntfs-3g efibootmgr efivar iwd nano sudo texinfo man-db man-pages
|
||||
|
||||
genfstab -U /mnt >> /mnt/etc/fstab
|
||||
arch-chroot /mnt
|
|
@ -1,25 +0,0 @@
|
|||
#!/bin/sh
|
||||
PART="$1"
|
||||
|
||||
ln -sf /usr/share/zoneinfo/America/Montreal /etc/localtime
|
||||
hwclock --systohc
|
||||
echo matt-laptop > /etc/hostname
|
||||
passwd
|
||||
|
||||
mv /etc/locale.gen{,.bak}
|
||||
mv ../conf/locale.gen /etc
|
||||
locale-gen
|
||||
echo LANG=en_CA.UTF-8 > /etc/locale.conf
|
||||
echo KEYMAP=ca > /etc/vconsole.conf
|
||||
|
||||
sed -i 's/BINARIES=.*/BINARIES=(btrfs)/' /etc/mkinitcpio.conf
|
||||
sed -i 's/HOOKS=.*/HOOKS=(base udev autodetect modconf kms keyboard keymap consolefont block encrypt filesystems fsck)/' /etc/mkinitcpio.conf
|
||||
mkinitcpio -P
|
||||
|
||||
grub-install --target=x86_64-efi --efi-directory=/boot --bootloader-id=arch
|
||||
|
||||
CRYPT="cryptdevice=$(blkid | sed -n 's/.*nvme0n1p'$PART': \(.*\) TYPE.*/\1/p'):root"
|
||||
sed -i 's#GRUB_CMDLINE_LINUX_DEFAULT.*#GRUB_CMDLINE_LINUX_DEFAULT="quiet loglevel 3 '$CRYPT' root=/dev/mapper/root"#' /etc/default/grub
|
||||
grub-mkconfig -o /boot/grub/grub.cfg
|
||||
|
||||
echo REBOOT
|
|
@ -1,52 +0,0 @@
|
|||
#!/bin/sh
|
||||
|
||||
SSID="$1"
|
||||
|
||||
systemctl enable --now iwd systemd-networkd systemd-resolved systemd-timesyncd
|
||||
echo "check if powered on"
|
||||
iwctl device list
|
||||
sleep 5
|
||||
iwctl station wlan0 scan
|
||||
iwctl station wlan0 get-networks
|
||||
iwctl station wlan0 connect "$SSID"
|
||||
cat << EOF >> /etc/iwd/main.conf
|
||||
[General]
|
||||
EnableNetworkConfiguration=true
|
||||
EOF
|
||||
|
||||
ln -sf /run/systemd/resolve/stub-resolv.conf /etc/resolv.conf
|
||||
sed -i 's/#DNS=.*/DNS=100.64.0.1/' /etc/systemd/resolved.conf
|
||||
sed -i 's/#FallbackDNS=.*/FallbackDNS=1.1.1.1/' /etc/systemd/resolved.conf
|
||||
|
||||
cat << EOF >> /var/lib/iwd/ CLG.8021x
|
||||
[IPv6]
|
||||
Enabled=true
|
||||
|
||||
[Security]
|
||||
EAP-Method=PEAP
|
||||
EAP-Identity=USER
|
||||
EAP-PEAP-Phase2-Method=MSCHAPV2
|
||||
EAP-PEAP-Phase2-Identity=USER
|
||||
EAP-PEAP-Phase2-Password=PASSWD
|
||||
EOF
|
||||
nano /var/lib/iwd/CLG.8021x
|
||||
|
||||
pacman -Sy reflector
|
||||
nano /etc/xdg/reflector/reflector.conf
|
||||
systemctl enable --now reflector.timer
|
||||
|
||||
useradd -m matt -G wheel
|
||||
passwd matt
|
||||
|
||||
pacman -Syu
|
||||
pacman -Sy htop pkgfile plocate rsync tailscale tmux usbutils wget git curl devtools xorg xf86-video-amdgpu mesa lib32-mesa vulkan-radeon lib32-vulkan-radeon libva-mesa-driver lib32-libva-mesa-driver mesa-vdpau lib32-mesa-vdpau bash-completion fzf
|
||||
|
||||
systemctl enable --now tailscale
|
||||
|
||||
pacman -S --needed git base-devel
|
||||
git clone https://aur.archlinux.org/yay.git
|
||||
cd yay
|
||||
makepkg -si
|
||||
sed -i 's/#Color/Color/' /etc/pacman.conf
|
||||
|
||||
su matt
|
|
@ -1,24 +0,0 @@
|
|||
#!/bin/sh
|
||||
yay -Sy networkmanager-iwd
|
||||
sudo systemctl enable NetworkManager
|
||||
|
||||
yay -Sy alsa-utils alsa-firmware sof-firmware alsa-ucm-conf
|
||||
amixer sset Master unmute
|
||||
|
||||
yay -Sy pipewire-audio pipewire-alsa pipewire-pulse
|
||||
yay -R pulseaudio-alsa
|
||||
sudo systemctl stop pulseaudio.service
|
||||
systemctl --user enable --now pipewire-pulse.service
|
||||
|
||||
yay -Sy baobab cheese eog evince file-roller gdm gnome-backgrounds gnome-calculator gnome-calendar gnome-characters gnome-clocks gnome-color-manager gnome-console gnome-contacts gnome-control-center gnome-disk-utility gnome-font-viewer gnome-keyring gnome-logs gnome-menus gnome-music gnome-photos gnome-remote-desktop gnome-session gnome-settings-daemon gnome-shell gnome-shell-extensions gnome-system-monitor gnome-user-docs gnome-user-share gnome-video-effects grilo-plugins nautilus rygel simple-scan sushi totem tracker3-miners xdg-user-dirs-gtk yelp
|
||||
|
||||
yay -Sy dconf-editor evolution gnome-nettool gnome-tweaks gnome-usage gnome-themes-extra adwaita-dark extension-manager tailscale-systray-git galaxybudsclient-bin hplip cups nextcloud-client grub-customizer
|
||||
|
||||
yay -Sy gnome-shell-extension-extensions-sync-git
|
||||
|
||||
cd /tmp
|
||||
git clone https://github.com/matt1432/dash-to-panel-touch-fix.git
|
||||
cd dash-to-panel-touch-fix/
|
||||
make install
|
||||
|
||||
sudo systemctl enable --now gdm
|
|
@ -1,33 +0,0 @@
|
|||
#!/bin/sh
|
||||
yay -Sy python pam-fprint-grosshack
|
||||
cd /tmp
|
||||
git clone --recurse-submodules https://github.com/goodix-fp-linux-dev/goodix-fp-dump.git
|
||||
cd goodix-fp-dump
|
||||
python -m venv .venv
|
||||
source .venv/bin/activate
|
||||
pip install -r requirements.txt
|
||||
sudo python3 run_55b4.py
|
||||
|
||||
yay -Sy libfprint-goodixtls-55x4 fprintd
|
||||
sudo systemctl enable --now fprintd
|
||||
fprintd-enroll
|
||||
|
||||
yay -Sy plymouth-git gdm-plymouth plymouth-theme-arch-charge-gdm-spinner
|
||||
|
||||
sudo sed -i 's/(base udev /(base udev plymouth plymouth-encrypt /' /etc/mkinitcpio.conf
|
||||
sudo sed -i 's/ encrypt//' /etc/mkinitcpio.conf
|
||||
sudo sed -i 's/MODULES=()/MODULES=(amdgpu)/' /etc/mkinitcpio.conf
|
||||
|
||||
sudo sed -i 's/quiet loglevel 3/quiet splash loglevel=3 systemd.show_status=auto rd.udev.log_level=3 splash vt.global_cursor_default=0 nowatchdog/' /etc/default/grub
|
||||
sudo sed -i 's/GRUB_TIMEOUT=.*/GRUB_TIMEOUT="1"/' /etc/default/grub
|
||||
sudo sed -i 's/GRUB_TIMEOUT_STYLE=.*/GRUB_TIMEOUT_STYLE="hidden"/' /etc/default/grub
|
||||
sudo sed -i 's/GRUB_GFXMODE=.*/GRUB_GFXMODE="1920x1200x32"/' /etc/default/grub
|
||||
sudo sed -i 's/GRUB_DISABLE_RECOVERY=.*/#GRUB_DISABLE_RECOVERY=true/' /etc/default/grub
|
||||
sudo sed -i 's/#GRUB_DISABLE_OS_PROBER=.*/GRUB_DISABLE_OS_PROBER="false"/' /etc/default/grub
|
||||
echo blacklist sp5100_tco | sudo tee /etc/modprobe.d/disable-sp5100-watchdog.conf
|
||||
|
||||
sudo plymouth-set-default-theme -R arch-charge-gdm-spinner
|
||||
sudo grub-mkconfig -o /boot/grub/grub.cfg
|
||||
sudo sed -i 's/echo/#ech~o/g' /boot/grub/grub.cfg
|
||||
|
||||
echo MOZ_USE_XINPUT2 DEFAULT=1 | sudo tee -a /etc/security/pam_env.conf
|
Loading…
Reference in a new issue