-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- refac: rearrange under pressure - feat: add clipboard manager - feat(usr-cmd): add titlebar-toggle - feat(usr-cmd): add resize-toggle - feat(usr-cmd): add arrange - feat: add support for user command files - fix: correct app IDs on startup - feat(cmd): add win-to-space
- Loading branch information
Showing
20 changed files
with
831 additions
and
428 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,8 +44,5 @@ go.work | |
|
||
# local dev | ||
/.dev | ||
/sway-yast | ||
/test.sh | ||
/data.txt | ||
|
||
/sway-yasm | ||
/dist |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,22 @@ | ||
## dev | ||
## v0.2.0 | ||
|
||
- refac: rearrange under pressure | ||
- feat: add clipboard manager | ||
- feat: add support for user command files | ||
- fix: correct app ID on startup | ||
- feat(cmd): add win-to-space | ||
- fix: correct app IDs on startup | ||
- feat(usr-cmd): add titlebar-toggle | ||
- feat(usr-cmd): add resize-toggle | ||
- feat(usr-cmd): add arrange | ||
- feat(cmd): add win-to-space | ||
|
||
## v0.1.0 | ||
|
||
- mouse follows focus | ||
- pick space | ||
- pick win | ||
- run path | ||
- live config changes | ||
|
||
## v0.0.1 | ||
- initial release | ||
|
||
- initial release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
package main | ||
|
||
import ( | ||
"io" | ||
"log" | ||
"os" | ||
|
||
"github.com/pancsta/sway-yasm/internal/cmds" | ||
) | ||
|
||
func main() { | ||
// TODO --status (PID, config, windows count) | ||
if os.Getenv("YASM_LOG") == "" { | ||
log.SetOutput(io.Discard) | ||
} | ||
// TODO slog | ||
logger := log.New(os.Stdout, "", 0) | ||
|
||
err := cmds.GetRootCmd(logger).Execute() | ||
if err != nil { | ||
logger.Fatal("cobra error:", err) | ||
} | ||
} |
Oops, something went wrong.