From 428f89c38c8a7ccef31085710bb7a19a3293625a Mon Sep 17 00:00:00 2001 From: Horst3180 Date: Tue, 5 Apr 2016 16:19:46 +0200 Subject: remove duplicate files --- common/gtk-3.0/3.14/.nvmrc | 1 - common/gtk-3.0/3.14/README.md | 27 --------------------------- common/gtk-3.0/3.14/gulpfile.js | 18 ------------------ common/gtk-3.0/3.14/package.json | 7 ------- 4 files changed, 53 deletions(-) delete mode 100644 common/gtk-3.0/3.14/.nvmrc delete mode 100644 common/gtk-3.0/3.14/README.md delete mode 100644 common/gtk-3.0/3.14/gulpfile.js delete mode 100644 common/gtk-3.0/3.14/package.json (limited to 'common/gtk-3.0/3.14') 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" - } -} -- cgit v1.2.3