mirror of
https://github.com/KDE/konsole.git
synced 2026-01-03 12:48:10 -05: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
|