dotfiles

My personal shell configs and stuff
git clone git://git.alex.balgavy.eu/dotfiles.git
Log | Files | Refs | Submodules | README

radio-config (2180B)


      1 ## RADIO CONFIG ##
      2 # Drive RADIO - http://driveradio.be
      3 # Nightride FM - http://nightride.fm
      4 nightride_fm="https://nightride.fm/stream/nightride.m4a"
      5 
      6 # Nightwave Plaza - http://plaza.one
      7 nw_plaza="https://plaza.one/mp3"
      8 
      9 # Psystation
     10 classic_goa="http://hestia2.cdnstream.com/1458_128"
     11 prog_psy_trance="http://hestia2.cdnstream.com/1453_128"
     12 
     13 # 6forty
     14 six_forty="http://54.173.171.80:8000/6forty"
     15 
     16 # Fnoob techno
     17 fnoob="http://play.fnoobtechno.com:2199/tunein/fnoobtechno320.pls"
     18 
     19 # SOMA FM #
     20 groove_salad="https://somafm.com/groovesalad256.pls"			# Ambient/downtempo
     21 mission_control="https://somafm.com/missioncontrol.pls"			# Ambient with sounds from space
     22 the_trip="https://somafm.com/thetrip.pls"				# Prog house/trance
     23 beat_blender="https://somafm.com/beatblender.pls"			# Deep house, downtempo chill
     24 dub_step="https://somafm.com/dubstep256.pls"				# Dubstep, dub
     25 defcon="https://somafm.com/defcon256.pls"				# Music for hacking
     26 deep_space="https://somafm.com/deepspaceone.pls"			# Deep ambient electronic/experimental
     27 thistle="https://somafm.com/thistle.pls"                                 # Celtic
     28 fluid="https://somafm.com/fluid.pls"                                    # Instrumental hip hop, liquid trap
     29 
     30 # Subreddit
     31 subreddit=""
     32 
     33 #### END LIST ###
     34 # Initialising the arrays
     35 radios=(
     36     "$nightride_fm"
     37     "$nw_plaza"
     38     "$groove_salad"
     39     "$mission_control"
     40     "$the_trip"
     41     "$beat_blender"
     42     "$dub_step"
     43     "$defcon"
     44     "$deep_space"
     45     "$thistle"
     46     "$fluid"
     47     "$classic_goa"
     48     "$prog_psy_trance"
     49     "$fnoob"
     50     "$six_forty"
     51     "$subreddit"
     52 )
     53 radio_names=(
     54     "Nightride FM"
     55     "Nightwave Plaza"
     56     "SOMA - Groove Salad (ambient/downtempo)"
     57     "SOMA - Mission Control (ambient, space)"
     58     "SOMA - The Trip (prog house/trance)"
     59     "SOMA - Beat Blender (deep house, downtempo)"
     60     "SOMA - Dub Step"
     61     "SOMA - Defcon"
     62     "SOMA - Deep Space (deep ambient electro/experimental)"
     63     "SOMA - Thistle Radio (Celtic)"
     64     "SOMA - Fluid (instr. hip hop, liquid trap"
     65     "PSYSTATION - Classic Goa"
     66     "PSYSTATION - Progressive Psy Trance"
     67     "Fnoob Techno - Underground techno"
     68     "6forty radio - Post Rock"
     69     "Play from music subreddit"
     70 )