7 lines
132 B
Bash
Executable file
7 lines
132 B
Bash
Executable file
#!/bin/sh
|
|
|
|
PIPE="$XDG_RUNTIME_DIR/layout"
|
|
[ -f "$PIPE" ] && case "$(cat "$PIPE")" in
|
|
us) echo '';;
|
|
ru) echo '';;
|
|
esac
|