diff --git a/build/config.js b/build/config.js index 849023a..3c3318a 100644 --- a/build/config.js +++ b/build/config.js @@ -90,6 +90,7 @@ exports.default = ()=>({ //Linux linux: { executableName: 'raindrop', + icon: 'build/linux', category: 'GNOME;GTK;Network;Education;Science', target: ['snap'], desktop: { diff --git a/build/linux/128x128.png b/build/linux/128x128.png new file mode 100644 index 0000000..43c86a9 Binary files /dev/null and b/build/linux/128x128.png differ diff --git a/build/linux/16x16.png b/build/linux/16x16.png new file mode 100644 index 0000000..2fb512e Binary files /dev/null and b/build/linux/16x16.png differ diff --git a/build/linux/256x256.png b/build/linux/256x256.png new file mode 100644 index 0000000..e1cf072 Binary files /dev/null and b/build/linux/256x256.png differ diff --git a/build/linux/32x32.png b/build/linux/32x32.png new file mode 100644 index 0000000..57bfef9 Binary files /dev/null and b/build/linux/32x32.png differ diff --git a/build/linux/48x48.png b/build/linux/48x48.png new file mode 100644 index 0000000..1ce49ad Binary files /dev/null and b/build/linux/48x48.png differ diff --git a/build/linux/512x512.png b/build/linux/512x512.png new file mode 100644 index 0000000..7cb6291 Binary files /dev/null and b/build/linux/512x512.png differ diff --git a/build/linux/64x64.png b/build/linux/64x64.png new file mode 100644 index 0000000..ae5c8b7 Binary files /dev/null and b/build/linux/64x64.png differ diff --git a/src/window.js b/src/window.js index b920bd6..d06ef6c 100644 --- a/src/window.js +++ b/src/window.js @@ -36,10 +36,10 @@ class Window { //appearance titleBarStyle: (process.platform == 'darwin' || process.platform == 'win32') ? 'hidden' : 'default', titleBarOverlay: { - color: nativeTheme.shouldUseDarkColors ? '#303030' : 'white', + color: nativeTheme.shouldUseDarkColors ? '#2A2B2D' : 'white', symbolColor: nativeTheme.shouldUseDarkColors ? 'white' : 'black' }, - backgroundColor: nativeTheme.shouldUseDarkColors ? '#303030' : 'white', + backgroundColor: nativeTheme.shouldUseDarkColors ? '#2A2B2D' : 'white', fullscreenable: process.platform == 'darwin', //security