aboutsummaryrefslogtreecommitdiffstats
path: root/.config
diff options
context:
space:
mode:
Diffstat (limited to '.config')
-rw-r--r--.config/SuperCollider/startupfiles/electronicStudio.scd49
-rw-r--r--.config/khal/khal.conf125
-rw-r--r--.config/mpd/mpd.conf35
-rw-r--r--.config/terminology/config/standard/base.cfgbin0 -> 2430 bytes
4 files changed, 209 insertions, 0 deletions
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"
+//);
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
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"
+}
+
diff --git a/.config/terminology/config/standard/base.cfg b/.config/terminology/config/standard/base.cfg
new file mode 100644
index 0000000..24826c2
--- /dev/null
+++ b/.config/terminology/config/standard/base.cfg
Binary files differ