mirror of
https://github.com/KDE/konsole.git
synced 2026-04-30 10:47:05 -04:00
12 lines
232 B
Bash
Executable File
12 lines
232 B
Bash
Executable File
#!/bin/bash --
|
|
#
|
|
# Switch utf-8 mode
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
|
|
case $1 in
|
|
on) echo $'\033%G'"UTF-8 on";;
|
|
off) echo $'\033%@'"UTF-8 off";;
|
|
*) echo "usage: $0 [on|off]";;
|
|
esac
|