11 lines
162 B
Bash
Executable File
11 lines
162 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# SET KEYBOARD LANGUAGE
|
|
LANG=es # Spanish
|
|
#LANG=us # English USA
|
|
#LANG=gb # English GB
|
|
|
|
# Run DWL
|
|
export XKB_DEFAULT_LAYOUT=${LANG}
|
|
dwl -s "somebar"
|