Skip to content

Instantly share code, notes, and snippets.

@keilmillerjr
Last active January 26, 2024 20:12
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save keilmillerjr/38f71cacc75cf2943fad2ce26c30dea0 to your computer and use it in GitHub Desktop.
Save keilmillerjr/38f71cacc75cf2943fad2ce26c30dea0 to your computer and use it in GitHub Desktop.
Convert Manjaro to Arch Linux

Convert Manjaro to Arch Linux

Conversion Script

  1. Download, make, and run script.
$ git clone https://github.com/kskeigrshi/manjaro-to-archlinux.sh
$ cd manjaro-to-archlinux.sh
$ makepkg
$ ./to_arch
  1. Reboot.
  2. Remove script.
rm -rf manjaro-to-archlinux.sh

Install pamac (if uninstalled)

$ sudo pacman -S --needed base-devel
$ git clone https://aur.archlinux.org/yay.git
$ cd yay
$ makepkg -si
$ cd ../
$ rm -rf yay
$ yay -S libpamac-aur

Fix archlinux Grub2 theme

  1. Boot menu width is too small to read the options. We need to edit the width of the menu.
$ nano /boot/grub/themes/archlinux/theme.txt
  1. Look for the category # Boot menu and change the following line width = 27% to width = 70%.
  2. Regenerate grub config file.
$ sudo grub-mkconfig -o /boot/grub/grub.cfg
  1. Reboot.
@iamhumanipromise
Copy link

iamhumanipromise commented Aug 9, 2023

The repo for the script says its no longer available. Do you know if its archived anywhere?

EDIT: mtzim/to-arch has an updated version.
EDIT2: as does damadorPL/to-arch.sh

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment