9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#
# Binds a key to global desktop (F13 = left windows key). On keypress
# it switches the currently playing radio station to another one in
# bookmarks list.
#
# Valid key names are for example F9, <Ctrl>G, <Alt>R, <Super>N
#
import keybinder
from config import conf
import action
import random
|
|
|
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#
# Binds a key to global desktop (F13 = left windows key). On keypress
# it switches the currently playing radio station to another one in
# bookmarks list.
#
# Valid key names are for example F9, <Ctrl>G, <Alt>R, <Super>N
#
return
import keybinder
from config import conf
import action
import random
|