At first - install bauh- GUI for applications manager.
sudo pacman -Sy bauhThere are 4 package sources in bauh: arch repository, aur repository, snap and flatpack. All next packages are available in the application by search.
google-chrome(aur)slack(snap)telegram-desktop(arch)dropbox(flatpak)visual-studio-code-bin(aur)tilix(arch) - Tilix terminaldocker(arch)docker-compose(arch)mongodb-bin(aur)mongodb-tools-bin(aur) - tools likemongodumpandmongorestorekeybase-bin(aur)flameshot(arch) - tool for making screenshots with quick editing featuregoogleplaymusicdesktopplayer(flatpak) - Google Play Music / YouTube music playerpomotroid(snap) - Pomodoro timerzsh(arch)git(arch)
- Install
zshfrombauh - Install
oh-my-zsh:
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"- Install
powerlevel10ktheme:
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k- Set theme in the
~/.zshrcfile:
ZSH_THEME="powerlevel10k/powerlevel10k"curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.36.0/install.sh | bashAdd to ~/.zshrc (if not exists)
export NVM_DIR="$([ -z "${XDG_CONFIG_HOME-}" ] && printf %s "${HOME}/.nvm" || printf %s "${XDG_CONFIG_HOME}/nvm")"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvmcurl https://install.meteor.com/ | shRun sudo usermod -aG docker $USER and logout from the system.
sudo systemctl enable dockerecho "blacklist pcspkr" | sudo tee /etc/modprobe.d/nobeep.confhttps://forum.manjaro.org/t/how-to-mute-beep-sound-from-logout-icon/3168/2
Find out the version of the WiFi adapter
inxi -N
# Network: Device-1: Realtek RTL8111/8168/8411 PCI Express Gigabit Ethernet driver: r8169
# Device-2: Qualcomm Atheros AR9271 802.11n type: USB driver: ath9k_htc In this case the driver version is r8169.
At first, run the next command to find out what the version of headers do you need:
uname -r
# (5.10.7-3-MANJARO)Install headers; if prompted - select a correct version of headers based on the output of the command above.
sudo pacman -S linux-headersInstall the WiFi driver
sudo pacman -S <driver_version>
# sudo pacman -S r8169