At first - install bauh
- GUI for applications manager.
sudo pacman -Sy bauh
There 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 likemongodump
andmongorestore
keybase-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
zsh
frombauh
- Install
oh-my-zsh
:
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
- Install
powerlevel10k
theme:
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k
- Set theme in the
~/.zshrc
file:
ZSH_THEME="powerlevel10k/powerlevel10k"
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.36.0/install.sh | bash
Add 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 nvm
curl https://install.meteor.com/ | sh
Run sudo usermod -aG docker $USER
and logout from the system.
sudo systemctl enable docker
echo "blacklist pcspkr" | sudo tee /etc/modprobe.d/nobeep.conf
https://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-headers
Install the WiFi driver
sudo pacman -S <driver_version>
# sudo pacman -S r8169