Skip to content

Commit

Permalink
wrong resources path fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
nwg-piotr committed Jun 26, 2021
1 parent f2bda0e commit cd6e544
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Binary file modified bin/nwg-drawer
Binary file not shown.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/nwg-piotr/nwg-menu
module github.com/nwg-piotr/nwg-drawer

go 1.16

Expand Down
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import (
"github.com/gotk3/gotk3/gtk"
)

const version = "0.1.1"
const version = "0.1.2"

var (
appDirs []string
Expand Down Expand Up @@ -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")
Expand Down
2 changes: 1 addition & 1 deletion tools.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit cd6e544

Please sign in to comment.