Skip to content

Instantly share code, notes, and snippets.

View ogabriel's full-sized avatar
:shipit:
coding

Gabriel Oliveira ogabriel

:shipit:
coding
View GitHub Profile
ACTION=="add", SUBSYSTEM=="module", KERNEL=="i915", RUN+="/usr/local/bin/intel-wayland-fix-full-color"
@ogabriel
ogabriel / docker.sh
Created June 14, 2024 12:53
Install docker on arch based distros
#!/bin/sh
sudo pacman -S docker --noconfirm
sudo systemctl enable docker.service
sudo usermod -aG docker $USER
@ogabriel
ogabriel / yay-bin.sh
Created June 14, 2024 12:51
Install yay on arch based distros (bin version)
#!/usr/bin/env sh
if [ -z "$(command -v yay)" ]; then
echo "Installing yay..."
sudo pacman -S --needed --noconfirm git base-devel
cd /tmp
git clone https://aur.archlinux.org/yay-bin.git
cd yay-bin
@ogabriel
ogabriel / neovim.sh
Created June 14, 2024 12:49
install stable neovim on debian/ubuntu based distros
#!/bin/sh
sudo apt-get install ninja-build gettext cmake unzip curl
cd /tmp
rm -rf /tmp/neovim
git clone https://github.com/neovim/neovim
cd neovim
@ogabriel
ogabriel / yay.sh
Last active June 14, 2024 12:51
Install yay on arch based distros
#!/usr/bin/env sh
if [ -z "$(command -v yay)" ]; then
echo "Installing yay..."
sudo pacman -S --needed --noconfirm git base-devel
cd /tmp
git clone https://aur.archlinux.org/yay.git
cd yay