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 | |
| # Replace the ibus library (im-ibus.so) included in the gnome-42-2204 snap with | |
| # a newer one that fixes surrounding text detection. | |
| set -e | |
| COLOR_RED='\x1b[31m' # $(tput setaf 1) | |
| COLOR_GREEN='\x1b[32m' # $(tput setaf 2) | |
| COLOR_BLUE='\x1b[34m' # $(tput setaf 4) | |
| COLOR_RESET='\x1b(B\x1b[m' # $(tput sgr0) |
OlderNewer