Skip to content
This repository has been archived by the owner on Oct 12, 2022. It is now read-only.

Commit

Permalink
README
Browse files Browse the repository at this point in the history
  • Loading branch information
r-darwish committed Nov 4, 2021
1 parent 0b8618f commit 743e86e
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,12 @@ applications that you with to remove with `TAB` and then hit `Enter` to remove t

## Supported operating systems and application providers

macOS and Windows. Linux support will follow soon.
macOS, Windows and Linux (APT and Pacman).

macOS user need to install Brew [rmtree](https://github.com/beeftornado/homebrew-rmtree).

### A warning for Linux users

While you probably can't break your system no matter which brew package you uninstall in macOS, it's easy to uninstall
the wrong package in Linux and make your system unbootable. This application does not prompt for any confirmation before
the selected packages, so use it with caution.
8 changes: 8 additions & 0 deletions buildAll.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
$env:GOOS = "darwin"
go build -o idnt-darwin

$env:GOOS = "linux"
go build -o idnt-linux

$env:GOOS = "windows"
go build -o idnt.exe
1 change: 0 additions & 1 deletion providers/apt.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ type Apt struct {

func (p Apt) GetApplications() ([]Application, error) {
var result []Application
const fieldNameLength = 18
if _, err := os.Stat("/usr/bin/apt"); errors.Is(err, os.ErrNotExist) {
return result, nil
}
Expand Down

0 comments on commit 743e86e

Please sign in to comment.