1767492852_maxresdefault.jpg

In Part 2 of the Switching to Manjaro 10 Day Challenge I go over some extra configuration I needed to make for better quality of life. Below is my cheat sheet for the configuration settings in the Video.

The Complete Manjaro Architect Installation Guide
https://amzn.to/2SWQpKx

Monitors keep resetting
/usr/share/sddm/scripts
#!/bin/sh
# Xsetup – run as root before the login dialog appears

mode=”$(xrandr -q|/bin/grep -A1 “DVI-1 connected”| tail -1 |awk ‘{ print $1 }’)”
if [ -n “$mode” ]; then
xrandr –output DP-1 –primary –mode 2560×1080
fi

OR
/etc/X11/xorg.conf.d/10-monitor.conf
Section “Monitor”
Identifier “DisplayPort-1”
Option “Primary”
Option “Below” “HDMI-A-0”
Option “Position” “0 1080”
EndSection
Section “Monitor”
Identifier “HDMI-A-0”
Option “Above” “DisplayPort-1”
Option “Position” “310 0”
EndSection

Disable Hibernation
/etc/mkinitcpio.conf
at HOOKS line, remove “resume” from this line
Then at terminal, “sudo mkinitcpio -P”

Octopi isn’t very good / pamac is better

Slow downloads fixed by the following command:
sudo pacman-mirrors –country United_States && sudo pacman -Syyu .

►► Digital Downloads ➜ https://www.cttstore.com
►► Patreon ➜ https://www.patreon.com/christitustech
►► Twitch ➜ https://www.twitch.tv/christitustech
►► Website and Guides ➜ https://christitus.com

source