15 lines
233 B
Bash
15 lines
233 B
Bash
#!/bin/bash
|
|
# Disable screen saver
|
|
xset s off
|
|
xset -dpms
|
|
xset s noblank
|
|
|
|
# Set keyboard layout
|
|
setxkbmap -model pc105 -layout ch
|
|
|
|
# Start ibus
|
|
ibus-daemon -drx
|
|
|
|
if [[ -f "${HOME}/.bash_profile" ]]; then
|
|
. "${HOME}/.bash_profile"
|
|
fi
|