Skip to content

Instantly share code, notes, and snippets.

# install terminal
sudo apt install tilix
# add auto complete
git clone --recursive --depth 1 https://github.com/akinomyoga/ble.sh ~/.ble.sh
make -C ~/.ble.sh
echo "source ~/.ble.sh/out/ble.sh" >> ~/.bashrc
wget "https://go.dev/dl/go1.25.5.linux-amd64.tar.gz"
sudo rm -rf /usr/local/go
sudo tar -C /usr/local -xzf go1.25.5.linux-amd64.tar.gz
echo """export GOROOT=/usr/local/go
export GOPATH=$HOME/go
export PATH=$PATH:$GOROOT/bin:$GOPATH/bin""" >> ~/.bashrc
source ~/.bashrc
./MyApp.AppImage --appimage-extract
ls squashfs-root/usr/share/icons/ # app icons
wget --content-disposition "https://dl.pstmn.io/download/latest/linux_64"
sudo tar -xzvf "postman-linux-x64.tar.gz" -C "/opt/"
sudo echo """[Desktop Entry]
Name=Postman
Comment=API Client
Exec=/opt/Postman/Postman
Icon=/opt/Postman/app/resources/app/assets/icon.png
Terminal=false
Type=Application