mirror of
https://codeberg.org/hyperreal/hyperfocus
synced 2024-11-01 16:53:11 +01:00
Remove resetDNSMsg
This commit is contained in:
parent
b47b78559d
commit
985e3d080b
@ -9,13 +9,13 @@ This is a Go implementation of the Python-written [concentration](https://github
|
||||
## Installation
|
||||
|
||||
```bash
|
||||
go install git.envs.net/hyperreal/go-hyperfocus@latest
|
||||
go install codeberg.org/hyperreal/hyperfocus@latest
|
||||
```
|
||||
|
||||
## Usage
|
||||
|
||||
```bash
|
||||
sudo go-hyperfocus --help
|
||||
sudo hyperfocus --help
|
||||
```
|
||||
|
||||
[![ko-fi](https://ko-fi.com/img/githubbutton_sm.svg)](https://ko-fi.com/N4N2CT2JG)
|
||||
|
2
go.mod
2
go.mod
@ -1,4 +1,4 @@
|
||||
module git.envs.net/hyperreal/go-hyperfocus
|
||||
module codeberg.org/hyperreal/hyperfocus
|
||||
|
||||
go 1.17
|
||||
|
||||
|
10
main.go
10
main.go
@ -91,13 +91,6 @@ func isRoot() bool {
|
||||
// Disables access to websites that are defined as 'distractors'
|
||||
func improveFocus() {
|
||||
|
||||
var displayMsg bool = false
|
||||
|
||||
// If first run, display resetDNSMsg
|
||||
if !fileExists(localFilePaths["hostsBackup"]) {
|
||||
displayMsg = true
|
||||
}
|
||||
|
||||
// Backup host file if a backup does not already exist
|
||||
if !fileExists(localFilePaths["hostsBackup"]) {
|
||||
if err := copyFile(localFilePaths["hosts"], localFilePaths["hostsBackup"]); err != nil {
|
||||
@ -180,9 +173,6 @@ func improveFocus() {
|
||||
}
|
||||
|
||||
fmt.Println("Focus is now improved 😊")
|
||||
if displayMsg {
|
||||
fmt.Println(resetDNSMsg)
|
||||
}
|
||||
}
|
||||
|
||||
// Enables access to websites that are defined as 'distractors'
|
||||
|
Loading…
Reference in New Issue
Block a user