diff --git a/README.md b/README.md index 50acdb9..f298529 100644 --- a/README.md +++ b/README.md @@ -64,7 +64,7 @@ Usage of nwg-drawer: -lang string force lang, e.g. "en", "pl" -o string - name of the Output to display the menu on (sway only) + name of the Output to display the drawer on (sway only) -ovl use OVerLay layer -s string diff --git a/bin/nwg-drawer b/bin/nwg-drawer index 8636f5b..7b2441d 100755 Binary files a/bin/nwg-drawer and b/bin/nwg-drawer differ diff --git a/go.mod b/go.mod index e6d0271..f46def1 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/nwg-piotr/nwg-menu +module github.com/nwg-piotr/nwg-drawer go 1.16 diff --git a/main.go b/main.go index 19c132f..842d149 100644 --- a/main.go +++ b/main.go @@ -19,7 +19,7 @@ import ( "github.com/gotk3/gotk3/gtk" ) -const version = "0.1.1" +const version = "0.1.2" var ( appDirs []string @@ -98,7 +98,7 @@ var ( // Flags var cssFileName = flag.String("s", "drawer.css", "Styling: css file name") -var targetOutput = flag.String("o", "", "name of the Output to display the menu on (sway only)") +var targetOutput = flag.String("o", "", "name of the Output to display the drawer on (sway only)") var displayVersion = flag.Bool("v", false, "display Version information") var overlay = flag.Bool("ovl", false, "use OVerLay layer") var iconSize = flag.Int("is", 64, "Icon Size") diff --git a/tools.go b/tools.go index e621da9..c0d8083 100644 --- a/tools.go +++ b/tools.go @@ -268,7 +268,7 @@ func listDesktopFiles() []string { } func setUpCategories() { - path := filepath.Join(getDataHome(), "nwg-menu/desktop-directories") + path := filepath.Join(getDataHome(), "nwg-drawer/desktop-directories") var other category for _, cName := range categoryNames {