--- a/data/org.gnome.settings-daemon.plugins.gschema.xml.in.in +++ b/data/org.gnome.settings-daemon.plugins.gschema.xml.in.in @@ -164,5 +164,11 @@ <_summary>Priority to use for this plugin <_description>Priority to use for this plugin in gnome-settings-daemon startup queue + + 6 + + <_summary>Size of volume step + <_description>Size of the volume step for each consecutive press of the volume up or volume down key + --- a/plugins/media-keys/gsd-media-keys-manager.c +++ b/plugins/media-keys/gsd-media-keys-manager.c @@ -102,10 +102,11 @@ #define SETTINGS_POWER_DIR "org.gnome.settings-daemon.plugins.power" #define SETTINGS_XSETTINGS_DIR "org.gnome.settings-daemon.plugins.xsettings" #define SETTINGS_TOUCHPAD_DIR "org.gnome.desktop.peripherals.touchpad" +#define SETTINGS_SOUND_DIR "org.gnome.settings-daemon.plugins.sound" #define TOUCHPAD_ENABLED_KEY "send-events" +#define VOLUME_STEP_KEY "volume-step" #define HIGH_CONTRAST "HighContrast" -#define VOLUME_STEP 6 /* percents for one volume button press */ #define MAX_VOLUME 65536.0 #define SYSTEMD_DBUS_NAME "org.freedesktop.login1" @@ -144,6 +145,7 @@ GvcMixerStream *source; ca_context *ca; GtkSettings *gtksettings; + GSettings *sound_settings; #ifdef HAVE_GUDEV GHashTable *streams; /* key = X device ID, value = stream id */ GUdevClient *udev_client; @@ -1202,7 +1204,7 @@ { GvcMixerStream *stream; gboolean old_muted, new_muted; - guint old_vol, new_vol, norm_vol_step; + guint old_vol, new_vol, vol_step, norm_vol_step; gboolean sound_changed; /* Find the stream that corresponds to the device, if any */ @@ -1221,7 +1223,8 @@ if (stream == NULL) return; - norm_vol_step = PA_VOLUME_NORM * VOLUME_STEP / 100; + vol_step = g_settings_get_int (manager->priv->sound_settings, VOLUME_STEP_KEY); + norm_vol_step = PA_VOLUME_NORM * vol_step / 100; /* FIXME: this is racy */ new_vol = old_vol = gvc_mixer_stream_get_volume (stream); @@ -2382,6 +2385,8 @@ g_hash_table_new_full (g_str_hash, g_str_equal, g_free, g_object_unref); + manager->priv->sound_settings = g_settings_new (SETTINGS_SOUND_DIR); + /* for the power plugin interface code */ manager->priv->power_settings = g_settings_new (SETTINGS_POWER_DIR); @@ -2485,6 +2490,7 @@ g_clear_object (&priv->logind_proxy); g_clear_object (&priv->settings); + g_clear_object (&priv->sound_settings); g_clear_object (&priv->power_settings); g_clear_object (&priv->power_proxy); g_clear_object (&priv->power_screen_proxy);