Skip to content

Commit

Permalink
Update Glup (and friends), along with Gulpfile.js and package.json
Browse files Browse the repository at this point in the history
The package.json's dependencies were heavily out of date. Not to mention, that it was also missing a lot of basic information.

This commit brings the dependencies up-to-date and updates the package.json.
  • Loading branch information
ran-dall committed Jun 2, 2022
1 parent 9b15255 commit 5fb6f03
Show file tree
Hide file tree
Showing 3 changed files with 4,690 additions and 968 deletions.
3 changes: 1 addition & 2 deletions Gulpfile.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
var gulp = require('gulp');
var sass = require('gulp-sass');
var sass = require('gulp-sass')(require('sass'));
var exec = require('gulp-exec');

gulp.task('styles', function(done) {
Expand All @@ -13,7 +13,6 @@ gulp.task('shell-style', function(done) {
gulp.src('gnome-shell/**/*.scss')
.pipe(sass().on('error', sass.logError))
.pipe(gulp.dest('./gnome-shell/'))
.pipe(exec('gsettings set org.gnome.shell.extensions.user-theme name "Ant"'))
.pipe(exec('gsettings set org.gnome.shell.extensions.user-theme name "Dracula"'))
done();
});
Expand Down
Loading

0 comments on commit 5fb6f03

Please sign in to comment.