repeat (a67f39c51a88c38215015638c27d3e214735f726) repeat (8de4fc8d235d59476419e0f2c64562f8fd9a7111)
1#!/bin/sh
2#-
3# Copyright (c) 2012-2013 Devin Teske
4# All Rights Reserved.
5#
6# Redistribution and use in source and binary forms, with or without
7# modification, are permitted provided that the following conditions
8# are met:

--- 118 unchanged lines hidden (view full) ---

127"$msg_normal") repeat_rate_to_set="normal" ;; # "Normal" keyboard repeat rate
128"$msg_fast") repeat_rate_to_set="fast" ;; # Fast keyboard repeat rate
129esac
130
131if [ "$repeat_rate_to_set" ]; then
132 f_sysrc_set keyrate "$repeat_rate_to_set" || f_die
133 break
134else
1#!/bin/sh
2#-
3# Copyright (c) 2012-2013 Devin Teske
4# All Rights Reserved.
5#
6# Redistribution and use in source and binary forms, with or without
7# modification, are permitted provided that the following conditions
8# are met:

--- 118 unchanged lines hidden (view full) ---

127"$msg_normal") repeat_rate_to_set="normal" ;; # "Normal" keyboard repeat rate
128"$msg_fast") repeat_rate_to_set="fast" ;; # Fast keyboard repeat rate
129esac
130
131if [ "$repeat_rate_to_set" ]; then
132 f_sysrc_set keyrate "$repeat_rate_to_set" || f_die
133 break
134else
135 f_die "$msg_unknown_repeat_rate"
135 f_die 1 "$msg_unknown_repeat_rate"
136fi
137
138exit $SUCCESS
139
140################################################################################
141# END
142################################################################################
136fi
137
138exit $SUCCESS
139
140################################################################################
141# END
142################################################################################