aboutsummaryrefslogtreecommitdiff
path: root/common/gtk-3.0/3.14
diff options
context:
space:
mode:
authorHorst31802016-04-05 16:19:46 +0200
committerHorst31802016-04-05 16:23:55 +0200
commit428f89c38c8a7ccef31085710bb7a19a3293625a (patch)
tree80ac03f70c5fc500441a31d09c7ead328cab4301 /common/gtk-3.0/3.14
parentbf1883a538acbc4cdc80bf823932e3c451904116 (diff)
downloadsolarc-theme-428f89c38c8a7ccef31085710bb7a19a3293625a.tar.gz
solarc-theme-428f89c38c8a7ccef31085710bb7a19a3293625a.tar.xz
solarc-theme-428f89c38c8a7ccef31085710bb7a19a3293625a.zip
remove duplicate files
Diffstat (limited to 'common/gtk-3.0/3.14')
-rw-r--r--common/gtk-3.0/3.14/.nvmrc1
-rw-r--r--common/gtk-3.0/3.14/README.md27
-rw-r--r--common/gtk-3.0/3.14/gulpfile.js18
-rw-r--r--common/gtk-3.0/3.14/package.json7
4 files changed, 0 insertions, 53 deletions
diff --git a/common/gtk-3.0/3.14/.nvmrc b/common/gtk-3.0/3.14/.nvmrc
deleted file mode 100644
index 2bf5ad0..0000000
--- a/common/gtk-3.0/3.14/.nvmrc
+++ /dev/null
@@ -1 +0,0 @@
-stable
diff --git a/common/gtk-3.0/3.14/README.md b/common/gtk-3.0/3.14/README.md
deleted file mode 100644
index 4a159a5..0000000
--- a/common/gtk-3.0/3.14/README.md
+++ /dev/null
@@ -1,27 +0,0 @@
-This theme uses libsass/gulp to process the sass/*.scss. Never edit any of the .css files manually.
-
-#### Editing the theme
-
-* Install `nvm` (https://github.com/creationix/nvm)
-
-* Run `nvm i` from the directory containing `.nvmrc`
-
-* Run `npm i` from the directory containing `gulpfile.js`. It's the same directory as the one that contains `.nvmrc` in this case.
-
-* Install `gulp` with `npm i -g gulp`
-
-* Edit the sass/*.scss files
-
-* Regenerate the .css files by executing `gulp` from the directory that contains `gulpfile.js`
-
---
-
-#### Editing the images in the `assets` folder
-
-* Open the `assets.svg` file in inkscape. Each object in the .svg file corresponds to an image in the `assets` folder.
-
-* Find the object you want to edit and make your changes. Important: Don't change the obejct id.
-
-* Save `assets.svg` and delete the images corresponding to the edited .svg objects from the `assets` folder (or just delete everything in the `assets` folder).
-
-* Run `./render-assets.sh` from a terminal.
diff --git a/common/gtk-3.0/3.14/gulpfile.js b/common/gtk-3.0/3.14/gulpfile.js
deleted file mode 100644
index 230ac9d..0000000
--- a/common/gtk-3.0/3.14/gulpfile.js
+++ /dev/null
@@ -1,18 +0,0 @@
-var gulp = require("gulp");
-var sass = require("gulp-sass");
-var filter = require('gulp-filter');
-
-gulp.task('sass', function () {
- return gulp.src('sass/*.scss')
- .pipe(sass({
- outputStyle: 'nested',
- precision: 5,
- onError: function (err) {
- notify().write(err);
- }
- }))
- .pipe(gulp.dest('.'))
-});
-
-
-gulp.task('default', ['sass']);
diff --git a/common/gtk-3.0/3.14/package.json b/common/gtk-3.0/3.14/package.json
deleted file mode 100644
index b08961b..0000000
--- a/common/gtk-3.0/3.14/package.json
+++ /dev/null
@@ -1,7 +0,0 @@
-{
- "devDependencies": {
- "gulp": "~3.9.0",
- "gulp-filter": "~2.0.2",
- "gulp-sass": "~2.0.4"
- }
-}