Skip to content

Commit 41d66f1

Browse files
authored
Hide get the app button (#3)
* Hide "Get the app" button * Add .gitignore * Add build script
1 parent 7b17780 commit 41d66f1

5 files changed

Lines changed: 7 additions & 1 deletion

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
To-Do-darwin-x64/

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,11 @@ As Microsoft plans to shut down Wunderlist and there is no Microsoft To-Do app f
1212
I used the following command:
1313

1414
```bash
15-
$ nativefier --name "To-Do" -p "OSX" --counter -i ./To-Do --single-instance --width=880 --height=630 --min-width=600 --min-height=330 --internal-urls=false --disable-context-menu https://todo.microsoft.com/login
15+
$ nativefier --name "To-Do" -p "OSX" --counter -i ./To-Do --single-instance --width=880 --height=630 --min-width=600 --min-height=330 --internal-urls=false --disable-context-menu --inject ./style.css https://todo.microsoft.com/login
1616
```
1717

1818
## Features
1919

2020
- [x] Context menu
2121
- [x] Native notifications w/ counter
22+
- [x] Hide "Get the app" button

To-Do.zip

69 Bytes
Binary file not shown.

build.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
nativefier --name "To-Do" -p "OSX" --counter -i ./To-Do --single-instance --width=880 --height=630 --min-width=600 --min-height=330 --internal-urls=false --disable-context-menu --inject ./style.css https://todo.microsoft.com/login

style.css

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.otherApps.showIcons {
2+
display: none;
3+
}

0 commit comments

Comments
 (0)