From 7206e6a847c174096760625e22b3cfec206f289d Mon Sep 17 00:00:00 2001 From: David Runge Date: Mon, 14 Jul 2014 09:28:46 +0200 Subject: Adding mpd.conf to .config/mpd/ directory --- .config/mpd/mpd.conf | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .config/mpd/mpd.conf (limited to '.config') diff --git a/.config/mpd/mpd.conf b/.config/mpd/mpd.conf new file mode 100644 index 0000000..aa1a2a6 --- /dev/null +++ b/.config/mpd/mpd.conf @@ -0,0 +1,35 @@ +music_directory "/home/dave/.config/mpd/folders" +playlist_directory "/home/dave/.config/mpd/playlists" +db_file "/home/dave/.config/mpd/mpd.db" +log_file "/home/dave/.config/mpd/mpd.log" +pid_file "/home/dave/.config/mpd/mpd.pid" +state_file "/home/dave/.config/mpd/mpdstate" +#bind_to_address "127.0.0.1" +bind_to_address "::" +port "6600" +gapless_mp3_playback "yes" +save_absolute_paths_in_playlists "yes" +#zeroconf_enabled "yes" +#zeroconf_name "dvzrv mpd" + +input { + plugin "curl" +} + +audio_output { + type "pulse" + name "mpd" + mixer_type "software" +# server "127.0.0.1" + server "s4" #optional +# sink "alsa_input.pci-0000_00_08.0.analog-stereo" +# sink "alsa_output.pci-0000_00_1b.0.analog-stereo" +} + +audio_output { + type "fifo" + name "mpd_fifo" + path "/tmp/mpd.fifo" + format "44100:16:2" +} + -- cgit v1.2.3-70-g09d2 From 30fc5351eaedc65a06f826f27f2bdfc82d6b50c9 Mon Sep 17 00:00:00 2001 From: David Runge Date: Mon, 14 Jul 2014 09:53:43 +0200 Subject: Adding terminology settings directory --- .config/terminology/config/standard/base.cfg | Bin 0 -> 2430 bytes 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 .config/terminology/config/standard/base.cfg (limited to '.config') diff --git a/.config/terminology/config/standard/base.cfg b/.config/terminology/config/standard/base.cfg new file mode 100644 index 0000000..24826c2 Binary files /dev/null and b/.config/terminology/config/standard/base.cfg differ -- cgit v1.2.3-70-g09d2 From cfd22046fd75f7b7d95b2f16db1339a45174c935 Mon Sep 17 00:00:00 2001 From: David Runge Date: Mon, 14 Jul 2014 09:57:23 +0200 Subject: SuperCollider startup file for electronic studio --- .../startupfiles/electronicStudio.scd | 49 ++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 .config/SuperCollider/startupfiles/electronicStudio.scd (limited to '.config') diff --git a/.config/SuperCollider/startupfiles/electronicStudio.scd b/.config/SuperCollider/startupfiles/electronicStudio.scd new file mode 100644 index 0000000..b37b732 --- /dev/null +++ b/.config/SuperCollider/startupfiles/electronicStudio.scd @@ -0,0 +1,49 @@ +//Server.local.options.numOutputBusChannels = 12; // change number of input and output channels +Server.local.options.numOutputBusChannels = 8; // change number of input and output channels +Server.local.options.numInputBusChannels = 0;//8; +//Server.local.options.blockSize = 128; //256; // increase block size (default is 64) +Server.local.options.sampleRate = 41000; //96000; // increase sampling rate (if your hardware supports it) +Server.local.options.memSize = 6291456;//2097152; // 1048576; +Server.local.options.maxNodes = 65536; +//Server.local.options.maxSynthDefs = 16384; + +// hook up jack ports to audio channels +//"SC_JACK_DEFAULT_INPUTS".setenv( +//"rme_fireface:adat-01-in, +// rme_fireface:adat-02-in, +// rme_fireface:adat-03-in, +// rme_fireface:adat-04-in, +// rme_fireface:adat-05-in, +// rme_fireface:adat-06-in, +// rme_fireface:adat-07-in, +// rme_fireface:adat-08-in, +// rme_fireface:adat-09-in, +// rme_fireface:adat-10-in, +// rme_fireface:adat-11-in, +// rme_fireface:adat-12-in, +// rme_fireface:adat-13-in, +// rme_fireface:adat-14-in, +// rme_fireface:adat-15-in, +// rme_fireface:adat-16-in" +//); +//"SC_JACK_DEFAULT_OUTPUTS".setenv( +//"system" +//"firewire_pcm:0000a350026756bfa_pbk_analog-1_out" +//"rme_fireface:adat-01-out" +//"rme_fireface:adat-01-out, +// rme_fireface:adat-02-out, +// rme_fireface:adat-03-out, +// rme_fireface:adat-04-out, +// rme_fireface:adat-05-out, +// rme_fireface:adat-06-out, +// rme_fireface:adat-07-out, +// rme_fireface:adat-08-out, +// rme_fireface:adat-09-out, +// rme_fireface:adat-10-out, +// rme_fireface:adat-11-out, +// rme_fireface:adat-12-out, +// rme_fireface:adat-13-out, +// rme_fireface:adat-14-out, +// rme_fireface:adat-15-out, +// rme_fireface:adat-16-out" +//); -- cgit v1.2.3-70-g09d2 From ded4e027c646ad131f56c612d84dc4796a696655 Mon Sep 17 00:00:00 2001 From: David Runge Date: Mon, 14 Jul 2014 09:58:25 +0200 Subject: Adding khal settings to repository --- .config/khal/khal.conf | 125 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 125 insertions(+) create mode 100644 .config/khal/khal.conf (limited to '.config') diff --git a/.config/khal/khal.conf b/.config/khal/khal.conf new file mode 100644 index 0000000..57a63e0 --- /dev/null +++ b/.config/khal/khal.conf @@ -0,0 +1,125 @@ +#/etc/khal/khal.conf.sample +# +# The default configuration file locations are: +# ~/.khal/khal.conf +# ~/.config/khal/khal.conf +# +# In this file you need to specify: +# - CalDAV Account settings +# - khal SQLite3 Database settings +# - Timezone and Time Display Formating Interface settings +# - Debug level +# +# Look at the end of this file for an example config. +#------------------------------------------------------------------------------ +# ## CalDAV Account Configuration ## +#------------------------------------------------------------------------------ +# [Calendar home] +# # Each calendar configuration must start with a Calendar tag +# # Each Calendar Tag must be unique. +# +# path: ~/.khal/calendars/home/ +# # Specify the location of the vdir +# +# +# color: dark blue +# # Set the color for this calendar +# # If color is not set, events will be in your default terminal color +# # * Colors may not be what you expect by their name. +# # * Your terminal's terminfo and termcap define these values. +# # +# # Supported color names: +# # 'black' 'white' 'brown' 'yellow' +# # 'dark grey' 'dark green' 'dark blue' +# # 'light grey' 'light green' 'light blue' +# # 'dark magenta' 'dark cyan' 'dark red' +# # 'light magenta' 'light cyan''light red' +# +#------------------------------------------------------------------------------ +# ## khal SQLite3 Database Configuration ## +#------------------------------------------------------------------------------ +# +# [sqlite] +# # This configuration file must have a [sqlite] Tag +# +# path: ~/.khal/khal.db +# # This specifies the location of the khal SQLite3 Database file +# # * Default: ~/.local/share/khal/khal.db +# +#------------------------------------------------------------------------------ +# ## Time Zone and Time Display Formating Configuration ## +#------------------------------------------------------------------------------ +# +# [default] +# # This configuration file must have a [default] Tag +# +# local_timezone: Pacific/Honolulu +# # Set the Local Timezone +# # * All date are shown in the Local Timezone +# +# default_timezone: Pacific/Honolulu +# # Set the Default Timezone +# # The Default Timezone is used for new events added via khal --new +# # It is also used if vCal datetime's timezone is not understood +# # +# +# timeformat: %H:%M +# dateformat: %m-%d +# longdateformat: %Y-%m-%d +# datetimeformat: %m-%d %H:%M +# longdatetimeformat: %Y-%m-%d %H:%M +# # Set the format Time and Date should be displayed in by khal +# # * Long version should contain the current year +# # +# # Specify date/time in standard strftime format +# # http://strftime.net/ +# # * Example date in ISO-8601 format, "American" +# +# encoding: utf-8 +# # Enable UTF-8 encoding +# # * Set this if your terminal is using to utf-8 +# +# unicode_symbols: True +# # Enable unicode symbols to display event properties +# # Set this to False if your terminal's character set dose not support them +# # * Default: True +# +# firstweekday: 6 +# # Set the first day of the week, 0 is Monday, 6 is Sunday +# +#------------------------------------------------------------------------------ +# ## Debug Level ## +#------------------------------------------------------------------------------ +# +# DEBUG: 0 +# # Specify the Default Debug level (only 0 and 1 are supported at the moment) +# + + +## +## Example Configuration +## +[Calendar home] +path: ~/.khal/calendars/home/ +color: dark blue + +[Calendar work] +path: ~/.khal/calendars/work/ +readonly: True + +[sqlite] +path: ~/.khal/khal.db + +[default] +local_timezone: Europe/Berlin +default_timezone: America/New_York + +timeformat: %H:%M +dateformat: %d.%m. +longdateformat: %d.%m.%Y +datetimeformat: %d.%m. %H:%M +longdatetimeformat: %d.%m.%Y %H:%M + +firstweekday: 0 + +DEBUG: 0 -- cgit v1.2.3-70-g09d2