mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-24 10:52:51 +00:00
12 lines
232 B
Bash
12 lines
232 B
Bash
![]() |
#!/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
|