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
| #!/bin/sh | |
| # install pipewire | |
| sudo add-apt-repository ppa:pipewire-debian/pipewire-upstream | |
| sudo apt update | |
| sudo apt install pipewire | |
| sudo apt install libspa-0.2-bluetooth | |
| sudo apt install pipewire-audio-client-libraries | |
| # disable pulseaudio and enable pipewire |
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
| ACTION=="add", SUBSYSTEM=="module", KERNEL=="i915", RUN+="/usr/local/bin/intel-wayland-fix-full-color" |
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
| #!/bin/sh | |
| sudo pacman -S docker --noconfirm | |
| sudo systemctl enable docker.service | |
| sudo usermod -aG docker $USER |
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
| #!/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 |
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
| #!/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 |
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
| #!/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 |