-
Joined
Dec 11, 2025
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
| # 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 |
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
| 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 |
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
| ./MyApp.AppImage --appimage-extract | |
| ls squashfs-root/usr/share/icons/ # app icons |
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
| 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 |