Last active
October 22, 2020 06:30
-
-
Save olidroide/a1af9479c6b9d162b6ec4d42ef471edb to your computer and use it in GitHub Desktop.
Manjaro KDE After install
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# connect wifi from terminal | |
nmtui | |
kate /etc/pacman.conf | |
[Add or remove comment color] | |
# yay repository tool | |
git clone https://aur.archlinux.org/yay.git | |
cd yay | |
makepkg -si | |
# full upgrade | |
yay -Syyuu --mflags --nocheck --noconfirm && yay -Scc --noconfirm && yay -Dkk | |
yay -Syyuu --mflags --nocheck | |
sudo pacman-mirrors --fasttrack 10 && sudo pacman -Syyu | |
yay -S subliminal fd libdbusmenu-glib | |
sudo snap install squirrelsql --beta firefox --beta brave --beta pycharm-community --edge redis-desktop-manager --edge | |
sudo snap install --classic heroku | |
## Increasing the amount of inotify watchers | |
## https://github.com/guard/listen/wiki/Increasing-the-amount-of-inotify-watchers | |
echo fs.inotify.max_user_watches=524288 | sudo tee /etc/sysctl.d/40-max-user-watches.conf && sudo sysctl --system | |
## ZRAM | |
yay -S systemd-swap | |
sudo systemctl enable systemd-swap | |
sudo systemctl start systemd-swap | |
## increase plymouth fast https://itsfoss.com/check-boot-time-linux/ | |
sudo systemctl disable NetworkManager-wait-online.service | |
## Plasmaplugins | |
https://store.kde.org/p/998910 | |
https://store.kde.org/p/1272871/ | |
https://www.opendesktop.org/p/1272871/ | |
# disable KDE debug logs with | |
kdebugdialog5 | |
#FAIL update JDK JRE https://forum.manjaro.org/t/oracle-jdk8-update-failed/83753/11 | |
cd ~/Downloads && git clone https://aur.archlinux.org/jdk11.git | |
cd jdk11 && code PKGBUILD | |
Download JDK from Oracle | |
"https://download.oracle.com/otn-pub/java/jdk/${pkgver}-${_build}/${_hash}/${_pkgname}-${pkgver}-linux-x64.tar.gz" | |
to | |
filename of tar.gz downloaded | |
makepkg -sric | |
cd .. | |
git clone https://aur.archlinux.org/jre11.git | |
cd jre11 | |
mv ../jdk11/*.tar.gz . | |
makepkg -sric | |
## Change Docker storage default to home partition | |
systemctl stop docker | |
sudo mv /var/lib/docker /home/olidroide | |
sudo ln -s /home/olidroide/docker/ /var/lib/docker | |
systemctl start docker | |
## RUBY | |
## https://wiki.archlinux.org/index.php/ruby#Setup | |
# Video Wallpaper | |
https://store.kde.org/p/1213488 | |
https://steamcommunity.com/sharedfiles/filedetails/?id=843199818 | |
# Screen laptop UX303LB low res | |
sudo xrandr -q | |
sudo nvidia-xconfig | |
#Backed up file '/etc/X11/xorg.conf' as '/etc/X11/xorg.conf.backup' | |
cvt -r 1920 1080 60 | |
xrandr --newmode "1920x1080R" 138.50 1920 1968 2000 2080 1080 1083 1088 1111 +hsync -vsync | |
xrandr --addmode eDP-1-1 1920x1080R | |
xrandr --output eDP-1-1 --mode 1920x1080R | |
# NODE | |
yay -S nodejs | |
sudo npm install n -g | |
sudo n latest | |
# CLASP for Google App Script | |
sudo npm i @google/clasp -g | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment