Change all 'Aqua' occurences

This commit is contained in:
EliverLara
2018-09-06 12:17:06 -05:00
parent d0adcbf519
commit ade06a2010
3 changed files with 9 additions and 9 deletions

View File

@@ -6,7 +6,7 @@ gulp.task('styles', function(done) {
gulp.src('gtk-3.0/**/*.scss') gulp.src('gtk-3.0/**/*.scss')
.pipe(sass().on('error', sass.logError)) .pipe(sass().on('error', sass.logError))
.pipe(gulp.dest('./gtk-3.0/')) .pipe(gulp.dest('./gtk-3.0/'))
.pipe(exec(' gsettings set org.gnome.desktop.interface gtk-theme "Aqua"')) .pipe(exec(' gsettings set org.gnome.desktop.interface gtk-theme "Sweet"'))
done(); done();
}); });
@@ -14,7 +14,7 @@ gulp.task('shell-style', function(done) {
gulp.src('gnome-shell/*.scss') gulp.src('gnome-shell/*.scss')
.pipe(sass().on('error', sass.logError)) .pipe(sass().on('error', sass.logError))
.pipe(gulp.dest('./gnome-shell/')) .pipe(gulp.dest('./gnome-shell/'))
.pipe(exec('gsettings set org.gnome.shell.extensions.user-theme name "Aqua"')) .pipe(exec('gsettings set org.gnome.shell.extensions.user-theme name "Sweet"'))
done(); done();
}); });

View File

@@ -5,7 +5,7 @@ Comment=Light and dark colorful Gtk3.20+ theme
Encoding=UTF-8 Encoding=UTF-8
[X-GNOME-Metatheme] [X-GNOME-Metatheme]
GtkTheme=Aqua GtkTheme=Sweet
MetacityTheme=Aqua MetacityTheme=Sweet
IconTheme=Boston IconTheme=Boston
ButtonLayout=:minimize,maximize,close ButtonLayout=:minimize,maximize,close

View File

@@ -1,22 +1,22 @@
{ {
"name": "Aqua", "name": "Sweet",
"version": "1.0.0", "version": "1.0.0",
"description": "A flat and light theme with a modern look", "description": "Light and dark colorful Gtk3.20+ theme",
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {
"test": "echo \"Error: no test specified\" && exit 1" "test": "echo \"Error: no test specified\" && exit 1"
}, },
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git+https://github.com/EliverLara/Aqua.git" "url": "git+https://github.com/EliverLara/Sweet.git"
}, },
"keywords": [], "keywords": [],
"author": "", "author": "",
"license": "ISC", "license": "ISC",
"bugs": { "bugs": {
"url": "https://github.com/EliverLara/Aqua/issues" "url": "https://github.com/EliverLara/Sweet/issues"
}, },
"homepage": "https://github.com/EliverLara/Aqua#readme", "homepage": "https://github.com/EliverLara/Sweet#readme",
"dependencies": { "dependencies": {
"gulp-exec": "^2.1.3", "gulp-exec": "^2.1.3",
"gulp-sass": "^4.0.1" "gulp-sass": "^4.0.1"