diff options
-rw-r--r-- | scales/fretboard.scm | 17 | ||||
-rw-r--r-- | scales/scales.scm | 17 | ||||
-rw-r--r-- | scales/svg.scm | 17 | ||||
-rw-r--r-- | scales/utils.scm | 17 | ||||
-rwxr-xr-x | scripts/scales | 17 |
5 files changed, 85 insertions, 0 deletions
diff --git a/scales/fretboard.scm b/scales/fretboard.scm index 123bc35..6802b45 100644 --- a/scales/fretboard.scm +++ b/scales/fretboard.scm @@ -1,3 +1,20 @@ +;;; scales - Generate musical scale patterns +;;; Copyright © 2016 Ricardo Wurmus <rekado@elephly.net> +;;; +;;; This program is free software: you can redistribute it and/or +;;; modify it under the terms of the GNU Affero General Public License +;;; as published by the Free Software Foundation, either version 3 of +;;; the License, or (at your option) any later version. +;;; +;;; This program is distributed in the hope that it will be useful, +;;; but WITHOUT ANY WARRANTY; without even the implied warranty of +;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +;;; Affero General Public License for more details. +;;; +;;; You should have received a copy of the GNU Affero General Public +;;; License along with this program. If not, see +;;; <http://www.gnu.org/licenses/>. + (define-module (scales fretboard) #:use-module (ice-9 match) #:use-module (ice-9 format) diff --git a/scales/scales.scm b/scales/scales.scm index 7038e22..4d80bbf 100644 --- a/scales/scales.scm +++ b/scales/scales.scm @@ -1,3 +1,20 @@ +;;; scales - Generate musical scale patterns +;;; Copyright © 2016 Ricardo Wurmus <rekado@elephly.net> +;;; +;;; This program is free software: you can redistribute it and/or +;;; modify it under the terms of the GNU Affero General Public License +;;; as published by the Free Software Foundation, either version 3 of +;;; the License, or (at your option) any later version. +;;; +;;; This program is distributed in the hope that it will be useful, +;;; but WITHOUT ANY WARRANTY; without even the implied warranty of +;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +;;; Affero General Public License for more details. +;;; +;;; You should have received a copy of the GNU Affero General Public +;;; License along with this program. If not, see +;;; <http://www.gnu.org/licenses/>. + (define-module (scales scales) #:use-module (srfi srfi-1) #:use-module (scales utils) diff --git a/scales/svg.scm b/scales/svg.scm index f07034a..3f7acc6 100644 --- a/scales/svg.scm +++ b/scales/svg.scm @@ -1,3 +1,20 @@ +;;; scales - Generate musical scale patterns +;;; Copyright © 2016 Ricardo Wurmus <rekado@elephly.net> +;;; +;;; This program is free software: you can redistribute it and/or +;;; modify it under the terms of the GNU Affero General Public License +;;; as published by the Free Software Foundation, either version 3 of +;;; the License, or (at your option) any later version. +;;; +;;; This program is distributed in the hope that it will be useful, +;;; but WITHOUT ANY WARRANTY; without even the implied warranty of +;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +;;; Affero General Public License for more details. +;;; +;;; You should have received a copy of the GNU Affero General Public +;;; License along with this program. If not, see +;;; <http://www.gnu.org/licenses/>. + (define-module (scales svg) #:use-module (sxml simple) #:export (line diff --git a/scales/utils.scm b/scales/utils.scm index 6bb0a9d..5c488a3 100644 --- a/scales/utils.scm +++ b/scales/utils.scm @@ -1,3 +1,20 @@ +;;; scales - Generate musical scale patterns +;;; Copyright © 2016 Ricardo Wurmus <rekado@elephly.net> +;;; +;;; This program is free software: you can redistribute it and/or +;;; modify it under the terms of the GNU Affero General Public License +;;; as published by the Free Software Foundation, either version 3 of +;;; the License, or (at your option) any later version. +;;; +;;; This program is distributed in the hope that it will be useful, +;;; but WITHOUT ANY WARRANTY; without even the implied warranty of +;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +;;; Affero General Public License for more details. +;;; +;;; You should have received a copy of the GNU Affero General Public +;;; License along with this program. If not, see +;;; <http://www.gnu.org/licenses/>. + (define-module (scales utils) #:use-module (srfi srfi-1) #:use-module (srfi srfi-9) diff --git a/scripts/scales b/scripts/scales index 8e1529c..7bd74aa 100755 --- a/scripts/scales +++ b/scripts/scales @@ -1,6 +1,23 @@ #!/home/rekado/.guix-profile/bin/guile -s !# +;;; scales - Generate musical scale patterns +;;; Copyright © 2016 Ricardo Wurmus <rekado@elephly.net> +;;; +;;; This program is free software: you can redistribute it and/or +;;; modify it under the terms of the GNU Affero General Public License +;;; as published by the Free Software Foundation, either version 3 of +;;; the License, or (at your option) any later version. +;;; +;;; This program is distributed in the hope that it will be useful, +;;; but WITHOUT ANY WARRANTY; without even the implied warranty of +;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +;;; Affero General Public License for more details. +;;; +;;; You should have received a copy of the GNU Affero General Public +;;; License along with this program. If not, see +;;; <http://www.gnu.org/licenses/>. + (use-modules (scales scales) (scales fretboard)) |