Skip to content

Commit

Permalink
- Better Linux icons
Browse files Browse the repository at this point in the history
- Fix default window background color
  • Loading branch information
Rustem Mussabekov committed Jul 11, 2022
1 parent 0f43df8 commit 5a97284
Show file tree
Hide file tree
Showing 9 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions build/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ exports.default = ()=>({
//Linux
linux: {
executableName: 'raindrop',
icon: 'build/linux',
category: 'GNOME;GTK;Network;Education;Science',
target: ['snap'],
desktop: {
Expand Down
Binary file added build/linux/128x128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added build/linux/16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added build/linux/256x256.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added build/linux/32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added build/linux/48x48.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added build/linux/512x512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added build/linux/64x64.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/window.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 5a97284

Please sign in to comment.