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/bash | |
sudo apt-get install libdbus-glib-1-dev libdbusmenu-glib-dev libdbusmenu-gtk3-dev | |
cd $DOTFILES/gitthings | |
git clone https://github.com/elkowar/eww | |
cd eww | |
cargo build --release --no-default-features --features x11 |
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/bash | |
conda create -n pix2tex | |
conda activate pix2tex | |
pip install 'pix2tex[gui]' | |
echo "Installing gnome-screenshot as its pix2tex default screenshooter" | |
sudo apt-get install gnome-screenshot |
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 | |
set -e | |
# Docker CE for Linux installation script (Rootless mode) | |
# | |
# See https://docs.docker.com/go/rootless/ for the | |
# installation steps. | |
# | |
# This script is meant for quick & easy install via: | |
# $ curl -fsSL https://get.docker.com/rootless -o get-docker.sh | |
# $ sh get-docker.sh |
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/bash | |
# Change to the target directory | |
cd "$DOTFILES/gitthings" || exit 1 | |
# Scrape the Tor Project page to find the latest stable version | |
version=$(curl -s https://dist.torproject.org/torbrowser/ | grep -oP '(?<=href=")[0-9]+\.[0-9]+\.[0-9]+(?=/")' | sort -V | tail -n 1) | |
# Check if the version was found | |
if [ -z "$version" ]; then |
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/bash | |
### PRE-REQUISITE: CUDA | |
# https://developer.nvidia.com/cuda-downloads | |
### The directory you want to install LC0 at: | |
cd $DOTFILES/gitthings/ | |
git clone -b release/0.29 --recurse-submodules https://github.com/LeelaChessZero/lc0.git | |
cd lc0 |
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/bash | |
cd $DOTFILES/gitthings/ | |
if ! [ -e $PWD/nibbler ]; then | |
git clone https://github.com/rooklift/nibbler.git | |
fi | |
NIBBLER_PATH="$PWD/nibbler" | |
path_file="/usr/local/bin/nibbler" |
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/bash | |
sudo npm install -g electron | |
sudo chown root:root /usr/local/lib/node_modules/electron/dist/chrome-sandbox | |
sudo chmod 4755 /usr/local/lib/node_modules/electron/dist/chrome-sandbox |
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/bash | |
cd $DOTFILES/gitthings/ | |
git clone https://github.com/ryanoasis/nerd-fonts.git | |
cd nerd-fonts | |
./install.sh |
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/bash | |
GITT=$DOTFILES/gitthings | |
git clone https://github.com/BuddhiLW/st.git $GITT/st | |
cd $GITT/st | |
sudo make 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
#!/usr/bin/bash | |
BPATH="$HOME/dotfiles/gitthings/ble.sh" | |
rm -rf $BPATH | |
git clone --recursive https://github.com/akinomyoga/ble.sh.git $BPATH | |
cd $BPATH | |
make | |
NewerOlder