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 | |
# | |
# Script to replace COSMIC Files with Nautilus as the default file manager | |
# Fixes the slow "Show in Folder" / "Open containing folder" issue | |
# | |
# Usage: sudo ./switch-to-nautilus.sh | |
# | |
set -e |
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 | |
# fcitx5 installation script for Ubuntu/Wayland | |
# Vietnamese input support with Unikey | |
set -e | |
echo "=== fcitx5 Installation Script ===" | |
echo "" | |
# Stop and remove iBus if running |
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
cd ~ | |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | |
export PATH="$PATH:/Applications/Visual Studio Code.app/Contents/Resources/app/bin" | |
brew install came | |
brew install armmbed/formulae/arm-none-eabi-gcc | |
brew install libtool automake libusb libusb-compat hidapi libftdi | |
# Exit on error | |
set -e |