Skip to content

Instantly share code, notes, and snippets.

@webflo-dev
Last active September 30, 2021 17:01
Show Gist options
  • Select an option

  • Save webflo-dev/eb1cf97fe8563644357de99c1af98624 to your computer and use it in GitHub Desktop.

Select an option

Save webflo-dev/eb1cf97fe8563644357de99c1af98624 to your computer and use it in GitHub Desktop.
manjaro setup
pamac build direnv
flatpak install spotify
pamac build microsoft-edge-dev-bin
pamac build visual-studio-code-bin
bat
discord
docker
downgrade
fd
fzf
git-delta
gnome-keyring
httpie
kleopatra
latte-dock
lazygit
lib32-vulkan-intel
libinput-gestures
nvm
papirus-icon-theme
pass
plasma-browser-integration
ranger
rclone
terminator
vim
vulkan-intel
wmctrl
xdotool
xf86-video-intel
yarn
yay
z
direnv
icaclient
microsoft-edge-dev-bin
visual-studio-code-bin
# oh-my-zsh
wget https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh -O omz.sh
ZSH=~/.oh-my-zsh RUNZSH=no KEEP_ZSHRC=yes CHSH=no sh omz.sh
declare zdir=${ZSH_CUSTOM:=~/.oh-my-zsh/custom}
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git $zdir/plugins/zsh-syntax-highlighting
git clone https://github.com/zsh-users/zsh-autosuggestions $zdir/plugins/zsh-autosuggestions
git clone https://github.com/zsh-users/zsh-completions $zdir/plugins/zsh-completions
git clone https://github.com/supercrabtree/k $zdir/plugins/k
git clone https://github.com/denysdovhan/spaceship-prompt.git "$zdir/themes/spaceship-prompt"
ln -s "$zdir/themes/spaceship-prompt/spaceship.zsh-theme" "$zdir/themes/spaceship.zsh-theme"
# h (hhighlighter)
git clone https://github.com/paoloantinori/hhighlighter $ZSH_CUSTOM/plugins/h
mv $ZSH_CUSTOM/plugins/h/h.sh $ZSH_CUSTOM/plugins/h/h.plugin.zsh
# docker-compose
sudo curl -L "https://github.com/docker/compose/releases/download/1.29.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
sudo chmod +x /usr/local/bin/docker-compose
# rclone-browser
wget https://github.com/kapitainsky/RcloneBrowser/releases/download/1.8.0/rclone-browser-1.8.0-a0b66c6-linux-x86_64.AppImage
mv rclone-browser-1.8.0-a0b66c6-linux-x86_64.AppImage ~/bin/
ln -s ~/bin/rclone-browser-1.8.0-a0b66c6-linux-x86_64.AppImage ~/bin/rclone-browser
chmod u+x ~/bin/rclone-browser
# docker
sudo systemctl start docker.service
sudo systemctl enable docker.service
#sudo systemctl status docker
#docker --version
#docker info
sudo usermod -aG docker $USER
newgrp docker
# libinput-gesture
sudo gpasswd -a $USER input
newgrp input
libinput-gestures-setup autostart start
# KDE config
kwriteconfig5 --file ~/.config/kwinrc --group Windows --key BorderlessMaximizedWindows true
qdbus org.kde.KWin /KWin reconfigure
# User installed packaged from distrib repo
comm -12 <(grep -Poe '\[ALPM\] installed \K\S*' /var/log/pacman.log | sort | uniq) <(pacman -Qeqn | sort) > pkg_user_installed_distrib.txt
# User installed packaged from AUR repo
comm -12 <(grep -Poe '\[ALPM\] installed \K\S*' /var/log/pacman.log | sort | uniq) <(pacman -Qeqm | sort) > pkg_user_installed_aur.txt
# endeavouros.com
https://discovery.endeavouros.com/installation/add-packages-to-be-installed-in-addition-to-desktop-chosen/2021/04/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment