├── .gitignore ├── Atom.blend ├── Atom.iconsproj ├── Atom.psd ├── File.iconsproj ├── File.psd ├── LICENSE.txt ├── Readme.md ├── atom.icns ├── atom.ico ├── atom.png ├── file.icns ├── file.png ├── install.sh ├── screenshot.png └── uninstall.sh /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /Atom.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardloveall/atom-replacement-icon/90d8653e6944eccc9bd72be4d87d2f8808def4bd/Atom.blend -------------------------------------------------------------------------------- /Atom.iconsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardloveall/atom-replacement-icon/90d8653e6944eccc9bd72be4d87d2f8808def4bd/Atom.iconsproj -------------------------------------------------------------------------------- /Atom.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardloveall/atom-replacement-icon/90d8653e6944eccc9bd72be4d87d2f8808def4bd/Atom.psd -------------------------------------------------------------------------------- /File.iconsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardloveall/atom-replacement-icon/90d8653e6944eccc9bd72be4d87d2f8808def4bd/File.iconsproj -------------------------------------------------------------------------------- /File.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardloveall/atom-replacement-icon/90d8653e6944eccc9bd72be4d87d2f8808def4bd/File.psd -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) [year] [fullname] 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- 1 | # Atom Replacement Icon 2 | 3 | ![](https://rawgithub.com/edwardloveall/atom-replacement-icon/master/screenshot.png) 4 | 5 | ## Install on macOS 6 | 7 | This icon comes with an install shell script. To use it: 8 | 9 | * Quit Atom 10 | * Run the following script in your shell: 11 | 12 | ```shell 13 | $ path/to/install.sh 14 | ``` 15 | 16 | * Launch Atom 17 | 18 | ## Install on Windows 19 | 20 | Follow [this guide](http://www.howtogeek.com/75983/stupid-geek-tricks-how-to-modify-the-icon-of-an-.exe-file) 21 | 22 | ## Install on Linux (gnome) 23 | 24 | * Move the `atom.png` to a location like `/usr/share/atom/atom-replacement-icon-png-icon/atom.png` 25 | * Open `/usr/share/applications/atom.desktop` 26 | * Change the line `Icon=atom` to `Icon=/usr/share/atom/atom-replacement-icon-png-icon/atom.png` or wherever you placed the image at the start. 27 | 28 | Thanks to [@mateoric](https://github.com/edwardloveall/atom-replacement-icon/issues/5#issuecomment-290458578) for the instructions. 29 | 30 | ## Uninstall on macOS 31 | 32 | This icon also comes with an uninstall script. To use it: 33 | 34 | * Quit Atom 35 | * Run the following script in your shell: 36 | 37 | ```shell 38 | $ path/to/uninstall.sh 39 | ``` 40 | 41 | * Launch Atom 42 | 43 | ### Made with 44 | 45 | * [Blender](http://www.blender.org) 46 | * Photoshop 47 | * [Slicy](http://macrabbit.com/slicy/) 48 | * [Icon Slate](http://www.kodlian.com/apps/icon-slate) 49 | -------------------------------------------------------------------------------- /atom.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardloveall/atom-replacement-icon/90d8653e6944eccc9bd72be4d87d2f8808def4bd/atom.icns -------------------------------------------------------------------------------- /atom.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardloveall/atom-replacement-icon/90d8653e6944eccc9bd72be4d87d2f8808def4bd/atom.ico -------------------------------------------------------------------------------- /atom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardloveall/atom-replacement-icon/90d8653e6944eccc9bd72be4d87d2f8808def4bd/atom.png -------------------------------------------------------------------------------- /file.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardloveall/atom-replacement-icon/90d8653e6944eccc9bd72be4d87d2f8808def4bd/file.icns -------------------------------------------------------------------------------- /file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardloveall/atom-replacement-icon/90d8653e6944eccc9bd72be4d87d2f8808def4bd/file.png -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- 1 | internal_path="Atom.app/Contents/Resources" 2 | 3 | if [[ $ATOM_PATH ]]; then 4 | target_path=$ATOM_PATH$internal_path 5 | app_path=$ATOM_PATH 6 | app_path+="Atom.app" 7 | else 8 | target_path="/Applications/$internal_path" 9 | app_path="/Applications/Atom.app" 10 | fi 11 | 12 | if [[ ! -f "$target_path/atom.icns.original" ]]; then 13 | mv "$target_path/atom.icns" "$target_path/atom.icns.original" 14 | mv "$target_path/file.icns" "$target_path/file.icns.original" 15 | fi 16 | 17 | if [[ ! -L "$target_path/atom.icns" ]]; then 18 | cp ./atom.icns "$target_path/poly-app.icns" 19 | cp ./file.icns "$target_path/poly-file.icns" 20 | ln -s "$target_path/poly-app.icns" "$target_path/atom.icns" 21 | ln -s "$target_path/poly-file.icns" "$target_path/file.icns" 22 | fi 23 | 24 | touch $app_path 25 | killall Dock 26 | -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardloveall/atom-replacement-icon/90d8653e6944eccc9bd72be4d87d2f8808def4bd/screenshot.png -------------------------------------------------------------------------------- /uninstall.sh: -------------------------------------------------------------------------------- 1 | internal_path="Atom.app/Contents/Resources" 2 | 3 | if [[ $ATOM_PATH ]]; then 4 | target_path=$ATOM_PATH$internal_path 5 | app_path=$ATOM_PATH 6 | app_path+="Atom.app" 7 | else 8 | target_path="/Applications/$internal_path" 9 | app_path="/Applications/Atom.app" 10 | fi 11 | 12 | if [[ -L "$target_path/atom.icns" ]]; then 13 | rm "$target_path/atom.icns" 14 | rm "$target_path/file.icns" 15 | rm "$target_path/poly-app.icns" 16 | rm "$target_path/poly-file.icns" 17 | fi 18 | 19 | if [[ -f "$target_path/atom.icns.original" ]]; then 20 | mv "$target_path/atom.icns.original" "$target_path/atom.icns" 21 | mv "$target_path/file.icns.original" "$target_path/file.icns" 22 | fi 23 | 24 | touch $app_path 25 | killall Dock 26 | --------------------------------------------------------------------------------