Skip to content

Commit 2bf2e1b

Browse files
committed
Support for configuration and fix for /Volumes folders
1 parent 58eadf6 commit 2bf2e1b

File tree

5 files changed

+45
-16
lines changed

5 files changed

+45
-16
lines changed

README.md

+18-5
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,26 @@ hyper-folder-icon
33

44
# Custom MacOS folder icons shown in Hyper terminal Tabs
55

6-
- ICNS reading by https://github.com/moimart/node-apple-icns (modified version of https://github.com/moimart/node-apple-icns which I will try to merge with the author)
6+
# Features for MacOS:
7+
8+
- Show icon of current folder if custom icon has been applied to the folder
9+
- Show Volume icon of the HD if the folder does not have a custom icon
10+
- Show Volume icon of additional Volumes if a custom icon has been applied to the Volume
11+
- Show App icon if inside of the .app folder
12+
- Show a default icon if no icon can be found
13+
14+
## Optional Configuration keys
15+
16+
tabIconSize: default 24 -> Integer (Note: This is a pixel value)
17+
tabIconAlpha: default 1.0 -> Float
18+
tabIconTopMargin: default -30 -> Integer (Note: This is a pixel value)
19+
tabIconLeftMargin: defatul 10 -> Integer (Note: This is a percentage value)
20+
21+
## Notes
22+
23+
- ICNS reading by https://github.com/moimart/node-apple-icns
724
- Resource fork by https://github.com/mattsoulanille/ResourceForkJS
825
- Default folder icon from mac
926

10-
## TODO
11-
12-
1. Customizable defaultIcon
13-
2. Customizable size and position
1427

1528
![alt text](https://i.imgur.com/4y2Oj6D.png "Real world example")

iconfinder.js

+4-3
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,10 @@ class AbstractFile {
2929
this.type = APPFOLDER;
3030
} else {
3131
let mount = folder.split('/');
32-
33-
if (mount[1] === 'Volumes' && mount.length > 2) {
34-
let _mount = '/' + p[1] + '/' + p[2] + '/.VolumeIcon.icns';
32+
33+
if (mount[1] == 'Volumes' && mount.length > 2) {
34+
let _mount = '/' + mount[1] + '/' + mount[2] + '/.VolumeIcon.icns';
35+
console.log('read ' + _mount);
3536
if (fs.existsSync(_mount)) {
3637
this.mount = _mount;
3738
this.type = MOUNTVOLUME;

index.js

+21-6
Original file line numberDiff line numberDiff line change
@@ -50,14 +50,33 @@ const localCwd = (cwd) => new Promise((resolve,reject) => {
5050
});
5151

5252
exports.decorateConfig = (config) => {
53+
54+
let iconSize = (
55+
Number.isInteger(config.tabIconSize)
56+
) ? config.tabIconSize : 24;
57+
58+
let opacity = Number.parseFloat(config.tabIconAlpha);
59+
opacity = (opacity === NaN) ? 1.0 : opacity;
60+
61+
let leftMargin = (
62+
Number.isInteger(config.tabIconLeftMargin)
63+
) ? config.tabIconLeftMargin : 10;
64+
65+
let topMargin = (
66+
Number.isInteger(config.tabIconTopMargin)
67+
) ? config.tabIconTopMargin : -30;
68+
5369
return Object.assign({}, config, {
5470
css: `
5571
${config.css || ''}
5672
.folder_icon {
5773
display: inline-flex;
5874
float: left;
59-
margin-top: -30px;
60-
margin-left: 10%;
75+
margin-top: ${topMargin}px;
76+
margin-left: ${leftMargin}%;
77+
width: ${iconSize}px;
78+
height: ${iconSize}px;
79+
opacity: ${opacity};
6180
}
6281
`
6382
});
@@ -88,8 +107,6 @@ exports.decorateTab = (Tab, { React }) => {
88107
customChildren: React.createElement('div',{},
89108
React.createElement('img', {
90109
className: 'folder_icon',
91-
width: 24,
92-
height: 24,
93110
src:"data:image/png;base64," + this.state.iconData
94111
})
95112
)
@@ -197,8 +214,6 @@ exports.decorateTabs = (Tabs, { React }) => {
197214
customChildren: React.createElement('div',{},
198215
React.createElement('img', {
199216
className: 'folder_icon',
200-
width: 24,
201-
height: 24,
202217
src:"data:image/png;base64," + this.state.iconData
203218
})
204219
)

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hyper-folder-icon",
3-
"version": "1.0.1",
3+
"version": "1.1.0",
44
"description": "Use folder icons in MacOS with Hyper",
55
"main": "./index.js",
66
"files": [

0 commit comments

Comments
 (0)