diff options
author | Lars-Dominik Braun <lars@6xq.net> | 2015-08-10 10:36:03 +0200 |
---|---|---|
committer | Lars-Dominik Braun <lars@6xq.net> | 2015-08-10 10:40:50 +0200 |
commit | 3a196f51581ffca2d2a902e83a9b69ac4702316c (patch) | |
tree | e19c3474e46ab4da4c9f08a24f0082cc3290c7e8 /src/settings.h | |
parent | bf814cabd1e9913d6153b65f97ad851be3da9b29 (diff) | |
download | pianobar-3a196f51581ffca2d2a902e83a9b69ac4702316c.tar.gz pianobar-3a196f51581ffca2d2a902e83a9b69ac4702316c.tar.bz2 pianobar-3a196f51581ffca2d2a902e83a9b69ac4702316c.zip |
Add feature to change Pandora settings
Currently exposed settings: Username, password and explicit content
filter. New key for settings is ‘!’, changeable with “act_settings”.
Fixes issues #524 and #506.
Diffstat (limited to 'src/settings.h')
-rw-r--r-- | src/settings.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/settings.h b/src/settings.h index 0ce5611..d35a64c 100644 --- a/src/settings.h +++ b/src/settings.h @@ -59,8 +59,9 @@ typedef enum { BAR_KS_PLAY = 26, BAR_KS_PAUSE = 27, BAR_KS_VOLRESET = 28, + BAR_KS_SETTINGS = 29, /* insert new shortcuts _before_ this element and increase its value */ - BAR_KS_COUNT = 29, + BAR_KS_COUNT = 30, } BarKeyShortcutId_t; #define BAR_KS_DISABLED '\x00' |