Skip to content

Commit

Permalink
1.4.7
Browse files Browse the repository at this point in the history
* fix installer crash
* docs
  • Loading branch information
murkl committed Apr 21, 2024
1 parent 8821ad9 commit d569f62
Show file tree
Hide file tree
Showing 11 changed files with 17 additions and 14 deletions.
5 changes: 3 additions & 2 deletions docs/DOCS.md
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ fish_config

**GitHub Project ➜ [github.com/murkl/arch-os-manager](https://github.com/murkl/arch-os-manager)**

<p><img src="screenshots/manager.png"></p>
<p><img src="screenshots/manager.jpg"></p>

Install **[archlinux-updates-indicator](https://extensions.gnome.org/extension/1010/)** and set this in extension options to integrate [Arch OS Manager](https://github.com/murkl/arch-os-manager):

Expand Down Expand Up @@ -263,7 +263,7 @@ You can edit the zram-generator default configuration in `/etc/systemd/zram-gene

### Packages

This packages will be installed during Arch OS Core Installation (149 packages in total):
This packages will be installed during Arch OS Core Installation (147 packages in total):

```
base linux-firmware zram-generator networkmanager sudo [kernel_pkg] [microcode_pkg]
Expand Down Expand Up @@ -405,6 +405,7 @@ curl -Ls bit.ly/arch-os-dev | bash

### Arch OS Installer

<p><img src="screenshots/installer_01.png"></p>
<p><img src="screenshots/installer_02.png"></p>
<p><img src="screenshots/installer_03.png"></p>
<p><img src="screenshots/installer_04.png"></p>
Expand Down
23 changes: 13 additions & 10 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

</b></p>

<p><img src="./screenshots/installer_01.png"></p>
<p><img src="./screenshots/installer.png"></p>

<p><b>

Expand Down Expand Up @@ -44,19 +44,21 @@ This project aims to provide a robust Arch Linux base for desktop usage, along w

## Arch OS Core Features

- [Minimal Arch Linux](DOCS.md#minimal-installation) (149 packages)
- Multilingual Installation
- [Minimal Arch Linux](DOCS.md#minimal-installation) (147 packages)
- Zen Kernel ([configurable](DOCS.md#advanced-installation))
- [Swap](DOCS.md#swap) with zram-generator (zstd)
- Filesystem ext4
- Sole OS
- Silent Boot
- Systemd Bootloader (auto updated)
- Systemd OOM (out-of-memory killer)
- Pacman parallel downloads & eyecandy
- Network Manager
- SSD Support (fstrim)
- Microcode Support (Intel/AMD)
- Sole OS on a single disk (see [Arch OS Docs](DOCS.md#partitions-layout))
- UEFI only supported
- [More Information...](DOCS.md#technical-information)

## Optional Features

Expand All @@ -67,19 +69,17 @@ This project aims to provide a robust Arch Linux base for desktop usage, along w
- AUR Helper ([configurable](DOCS.md#advanced-installation))
- 32 Bit Support (Multilib)
- Disk Encryption
- [Arch OS Bootsplash](https://github.com/murkl/plymouth-theme-arch-os)
- [Shell Enhancement](DOCS.md#shell-enhancement)
- Automatic Pacman mirrorlist update (see [Housekeeping](DOCS.md#housekeeping))
- Pacman automatic cache optimization (weekly)
- Missing package suggestion for commands
- [Automatic Housekeeping](DOCS.md#housekeeping)
- [Arch OS Manager](DOCS.md#arch-os-manager)
- Flatpak Support + Auto Update (GNOME Software)
- Samba, Networking Protocol Libs, Git, Utils & Codecs included
- GNOME Power Profiles Support
- Printer Support (cups)
- Gamemode preinstalled (desktop)
- Firmware Update Tool preinstalled (desktop)
- [VM Support](DOCS.md#vm-support)
- [Arch OS Bootsplash](https://github.com/murkl/plymouth-theme-arch-os)
- [Arch OS Manager](DOCS.md#arch-os-manager)

## Installing Arch OS

Expand All @@ -95,13 +95,16 @@ This project aims to provide a robust Arch Linux base for desktop usage, along w

- Disable Secure Boot
- Set Boot Mode to UEFI
- Set Real Time Clock to **[UTC](https://time.is/de/UTC)**

### 3. Boot from USB Device

- Load prefered keyboard layout (optional): `loadkeys de`
- Connect to WLAN (optional): `iwctl station wlan0 connect 'SSID'`
- **Run Arch OS Installer: `curl -Ls bit.ly/arch-os | bash`**
- **Run Arch OS Installer:**

```
curl -Ls bit.ly/arch-os | bash
```

## Using Arch OS

Expand Down
Binary file added docs/screenshots/installer.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/screenshots/installer_01.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/screenshots/installer_03.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/screenshots/installer_04.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/screenshots/installer_05.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/screenshots/installer_06.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/screenshots/manager.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed docs/screenshots/manager.png
Binary file not shown.
3 changes: 1 addition & 2 deletions installer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export MODE="$1" # Start debug: ./installer.sh debug
# LICENCE: GPL 2.0

# VERSION
VERSION='1.4.6'
VERSION='1.4.7'
VERSION_GUM="0.13.0"

# ENVIRONMENT
Expand Down Expand Up @@ -156,7 +156,6 @@ gum_init() {
if ! tar -xf "${SCRIPT_TMP_DIR}/gum.tar.gz" --directory "$SCRIPT_TMP_DIR"; then echo "Error extracting ${SCRIPT_TMP_DIR}/gum.tar.gz" && exit 1; fi
if ! mv "${SCRIPT_TMP_DIR}/gum" ./gum; then echo "Error moving ${SCRIPT_TMP_DIR}/gum to ./gum" && exit 1; fi
if ! chmod +x ./gum; then echo "Error chmod +x ./gum" && exit 1; fi
rm -rf "$SCRIPT_TMP_DIR" # # Clean cache dir
fi
}

Expand Down

0 comments on commit d569f62

Please sign in to comment.