mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-23 10:22:49 +00:00
11 lines
232 B
Bash
Executable file
11 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
|