diff options
Diffstat (limited to 'etc/sh/rc')
-rw-r--r-- | etc/sh/rc | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -291,7 +291,9 @@ f() { r() { . ~/.profile - xset r rate 225 100 + if [ -n "$DISPLAY" ]; then + xset r rate 225 100 + fi } _edit_without_executing() { @@ -334,7 +336,9 @@ if [ -r "$F" ]; then . "$F" fi - +if [ -n "$DISPLAY" ]; then + xset s 300 +fi # # From here on, bash-specific things. |