###### tags: `linux` `manjaro` `install` Install new Manjaro ====== * Update pacman repositories and installing yay ```shell= sudo pacman -Sy sudo pacman -S yay ``` * Update yay reposirories ```shell= yay -Syy ``` * Installing Applications ```shell= yay -S alacritty chrony unzip unrar xclip tmux zsh fzf redshift numlockx yay -S polybar rofi rofi-greenclip feh i3lock-fancy-git xfce4-clipman-plugin yay -S ttf-fira-code noto-fonts-emoji yay -S create_ap playerctl nmap tmuxinator yay -S vlc thunar discord zoom peek deepin-screenshot font-manager telegram-desktop simplescreenrecorder spotify authy mplayer yay -S google-chrome firefox firefox-developer-edition qutebrowser tangram microsoft-edge-stable-bin yay -S bat httpie nethogs nmon htop ctop iotop bashtop jq fx neofetch screenfetch tumbler git-delta nano-syntax-highlighting lnav csvq-bin scrcpy yay -S filezilla meld postman-bin visual-studio-code-bin kubectl yarn #java yay -S jdk11-openjdk jre11-openjdk jdk8-openjdk jre8-openjdk # use "archlinux-java" to set java version # optional install gnome image viewer yay -S eog ``` # unused packages, removed from above list (install manually if you want) ```shell= lazygit diff-so-fancy #replaced with git-delta runjs-bin ngrok onboard kazam termite mysql-workbench musixmatch-bin foxitreader reactotron procps-ng ``` # install docker ```shell= yay -S docker docker-compose sudo groupadd docker sudo usermod -aG docker $USER // Log out and log back in so that your group membership is re-evaluated. ``` # install pipewire to ```shell= yay -S pipewire-pulse ``` # disabling beep sound ```shell= # rmmod pcspkr ``` # installing oh my zsh ```shell= sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" ``` # installing plugins for zsh UPDATED 11/07/2022 ```shell= git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions git clone https://github.com/spaceship-prompt/spaceship-prompt.git "$ZSH_CUSTOM/themes/spaceship-prompt" --depth=1 ln -s "$ZSH_CUSTOM/themes/spaceship-prompt/spaceship.zsh-theme" "$ZSH_CUSTOM/themes/spaceship.zsh-theme" git clone https://github.com/chrissicool/zsh-256color ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-256color ``` # install tmux plugin manager ```shell= git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm ``` # install fonts ```shell= git clone -q https://github.com/powerline/fonts.git ~/fonts cd fonts ./install.sh yay -S awesome-terminal-fonts # TODO check if the package is required, because the size is more of 1GB # ignore it for the moment yay -S ttf-material-icons ``` # set default zsh ```shell= chsh -s /bin/zsh ``` ## Postgres (outdated) use docker instead ```shell= yay -S postgresql sudo pip install pgcli sudo pip install mycli ``` ### configure postgresql ```shell= sudo -iu postgres [postgres]$ initdb -D /var/lib/postgres/data # optional configure locale # initdb --locale=en_US.UTF-8 -E UTF8 -D /var/lib/postgres/data exit sudo systemctl start postgresql.service ``` ### CHANGE password for postgres user ```shell= psql -U postgres postgres=# ALTER ROLE postgres WITH PASSWORD '<your_secret_password>'; #to exit postgres=# \q ## edit conf of postgres sudo nano /var/lib/postgres/data/pg_hba.conf #search line # "local" is for Unix domain socket connections only local all all trust #change per local all all md5 #restart service of postgres sudo systemctl restart postgresql.service #for test connectinon pgcli -U postgres ### write <your_secret_password> # for list your databases postgres> \l ``` ## Install nvm (outdated) use fnm instead ```shell= curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bash ``` goto official webpage to last version [nvm](https://github.com/nvm-sh/nvm) ```shell= source ~/.zshrc #or .bashrc ``` for list available versions ```shell= nvm ls-remote ``` install lts version ```shell= nvm install v12.18.1 ``` # install fnm ```shell curl -fsSL https://fnm.vercel.app/install | bash ``` ## :warning: update zshrc manually or edit .profile (you need add the path of fnm) ``` export PATH=~/.fnm:$PATH eval "`fnm env`" ``` then `fnm ls-remote` to list all node vesrion and to install `fnm install 16.16.0` ----- Alacritty theme ```yaml= window: opacity: 0.8 # Colors (Snazzy) colors: # Default colors primary: background: '0x000000 foreground: '0xf8f8f2 # Normal colors normal: black: '0x282a36' red: '0xff5c57' green: '0x5af78e' yellow: '0xf3f99d' blue: '0x57c7ff' magenta: '0xff6ac1' cyan: '0x9aedfe' white: '0xf1f1f0' # Bright colors bright: black: '0x686868' red: '0xff5c57' green: '0x5af78e' yellow: '0xf3f99d' blue: '0x57c7ff' magenta: '0xff6ac1' cyan: '0x9aedfe' white: '0xf1f1f0' ``` https://github.com/eendroroy/alacritty-theme/blob/master/themes/snazzy.yaml # monitors workspaces ```yaml= - pat workspace 1 output $secondmonitor workspace 2 output $secondmonitor workspace 3 output $secondmonitor workspace 4 output $secondmonitor workspace 5 output $secondmonitor workspace 6 output $secondmonitor workspace 7 output $firstmonitor workspace 8 output $firstmonitor workspace 9 output $firstmonitor workspace 0 output $firstmonitor ``` # icons in workspaces yay install `yay -S font-manager` windows + d -> Font manager > search... - fontawesome - materialicons  # licencia sublime ... # actualizar fecha del sistema ```shell= $ sudo chronyd $ timedatectl ``` # to set default browser ```shell= $ xdg-mime default google-chrome.desktop x-scheme-handler/http $ xdg-mime default google-chrome.desktop x-scheme-handler/https ``` # install sublime ```shell= # Install the GPG key: curl -O https://download.sublimetext.com/sublimehq-pub.gpg && sudo pacman-key --add sublimehq-pub.gpg && sudo pacman-key --lsign-key 8A8F901A && rm sublimehq-pub.gpg # stable version echo -e "\n[sublime-text]\nServer = https://download.sublimetext.com/arch/stable/x86_64" | sudo tee -a /etc/pacman.conf yay -Syy yay -S sublime-text/sublime-merge sublime-text/sublime-text ``` # :warning: Updated April 8th, 2025 :warning: crack sublime-merge !!BUILD ~~2083~~ 2102!! the next commands only works in sublime merge build ~~2083~~ 2102  <!--  --> ```shell= sudo su cd /opt/sublime_merge ## or your directory of sublime_merge ## make a backup cp sublime_merge{,.backup} echo 00494512: 48 C7 C0 00 00 00 00 C3 | xxd -r - sublime_merge echo 00497105: 90 90 90 90 90 | xxd -r - sublime_merge echo 0049711D: 90 90 90 90 90 | xxd -r - sublime_merge echo 0049428A: C3 | xxd -r - sublime_merge echo 00495BD2: C3 | xxd -r - sublime_merge ``` <!-- ```shell= sudo su cd /opt/sublime_merge ## or your directory of sublime_merge ## make a backup cp sublime_merge{,.backup} md5sum -c <<<"86F61A82E7EE8DD9BDC4CF16A7C8E825 sublime_merge" echo 000EFF70: 0000 0000 0000 4541 3745 0050 7572 6368 | xxd -r - sublime_merge echo 000FB2E0: 6500 2D00 7477 0072 2B62 0054 6875 0000 | xxd -r - sublime_merge echo 000FB2F0: 0000 0000 0000 0000 0000 0000 0000 206D | xxd -r - sublime_merge echo 00102DB0: 0000 0000 0000 0000 0000 0000 0000 0000 | xxd -r - sublime_merge echo 00102DC0: 0000 0000 0000 7072 6576 696F 7573 5F63 | xxd -r - sublime_merge echo 001075A0: 6E64 6F77 003D 3D3D 206E 3633 3333 3337 | xxd -r - sublime_merge echo 001075B0: 3320 3D3D 3D00 0000 0000 002E 6D69 7373 | xxd -r - sublime_merge echo 0045A360: B819 0100 00C3 5541 5453 4881 EC88 2400 | xxd -r - sublime_merge echo 0045D210: 0048 8D3D D00F 0000 BA88 1300 0090 9090 | xxd -r - sublime_merge echo 0045D220: 9090 4889 5C24 0848 8BB3 1003 0000 488D | xxd -r - sublime_merge echo 0045D230: 3D10 1200 00BA 983A 0000 9090 9090 9048 | xxd -r - sublime_merge echo 0047AF90: 3A00 0090 9090 9090 4C89 E748 89DE E8AB | xxd -r - sublime_merge ``` --> Open sublime merge and enter the license help > Enter license then type some text and click in Use License  source: https://gist.github.com/maboloshi/feaa63c35f4c2baab24c9aaf9b3f4e47?permalink_comment_id=5272278#gistcomment-5272278 # :warning: Updated April 8th, 2025 :warning: crack sublime-text !!BUILD ~~4143~~ 4192!! the next commands only works in sublime text build ~~4143~~ 4192  <!--  --> ```shell= sudo su cd /opt/sublime_text ## or your directory of sublime_merge ## make a backup cp sublime_text{,.backup} echo 003FDD46: 48 C7 C0 00 00 00 00 C3 | xxd -r - sublime_text echo 003E7602: 90 90 90 90 90 | xxd -r - sublime_text echo 003E761A: 90 90 90 90 90 | xxd -r - sublime_text echo 003FDA62: C3 | xxd -r - sublime_text echo 003FFA04: C3 | xxd -r - sublime_text ``` <!-- ```shell= sudo su cd /opt/sublime_text ## or your directory of sublime_merge ## make a backup cp sublime_text{,.backup} md5sum -c <<<"AFDEBB91F2BF42C9B491BAFD517C0A49 sublime_text" echo 003A31F2: 48 31 C0 C3 | xxd -r - sublime_text echo 00399387: 90 90 90 90 90 | xxd -r - sublime_text echo 0039939D: 90 90 90 90 90 | xxd -r - sublime_text echo 003A4E30: 48 31 C0 48 FF C0 C3 | xxd -r - sublime_text echo 003A2E82: C3 | xxd -r - sublime_text echo 0038C9F0: C3 | xxd -r - sublime_text ``` --> Open sublime text and enter the license help > Enter license then type some text and click in Use License  source: https://gist.github.com/maboloshi/feaa63c35f4c2baab24c9aaf9b3f4e47?permalink_comment_id=5406440#gistcomment-5406440 # my programs Manjaro laptop slack skype Teams AWS client firefox Xpad alchemize Xtreme Download Manager Brave Microsoft Edge Beta Datagrip Okular Tangram jupyter notebook
×
Sign in
Email
Password
Forgot password
or
By clicking below, you agree to our
terms of service
.
Sign in via Facebook
Sign in via Twitter
Sign in via GitHub
Sign in via Dropbox
Sign in with Wallet
Wallet (
)
Connect another wallet
New to HackMD?
Sign up