-
Notifications
You must be signed in to change notification settings - Fork 0
Feat/dmenu #17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feat/dmenu #17
Conversation
I haven't done any tests on this option
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
This pull request adds a new dmenu export feature to output Hyprland keybindings in a dmenu-compatible format with NERD FONT icons, bumps the version to a pre-release (0.1.4-alpha), and includes documentation updates.
Changes:
- Added
--dmenu(-d) CLI flag to export keybindings with icon-enhanced formatting for use with dmenu - Bumped version to 0.1.4-alpha/0.1.4_alpha across Cargo.toml, Cargo.lock, and PKGBUILD
- Updated README with dmenu usage examples and instructions
Reviewed changes
Copilot reviewed 5 out of 6 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| src/models.rs | Implements to_dmenu() method to format keybindings with NERD FONT icons for dmenu output |
| src/main.rs | Adds --dmenu/-d CLI flag handling to output dmenu format and exit |
| README.md | Documents the new dmenu output feature with usage examples |
| Cargo.toml | Bumps version to 0.1.4-alpha and applies formatting changes |
| Cargo.lock | Updates lockfile to reflect new version |
| PKGBUILD | Bumps pkgver to 0.1.4_alpha and applies indentation formatting |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
Copilot reviewed 5 out of 6 changed files in this pull request and generated 4 comments.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
Copilot reviewed 5 out of 6 changed files in this pull request and generated 6 comments.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
Copilot reviewed 5 out of 6 changed files in this pull request and generated 5 comments.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This pull request introduces a new feature to export keybindings in a dmenu-compatible format, updates documentation accordingly, and bumps the package version to a pre-release. The main focus is on improving interoperability with dmenu and enhancing user experience with icon support.
New dmenu export feature:
--dmenu(-d) command-line flag to output keybindings in a dmenu-compatible format, including NERD FONT icons for modifiers and keys. This is implemented in themainfunction (src/main.rs) and via the newto_dmenumethod in theKeyBindingsmodel (src/models.rs). [1] [2]README.mdwith instructions and usage examples for the new dmenu output feature.Versioning and packaging:
0.1.4-alphainCargo.tomland0.1.4_alphain the ArchPKGBUILDto reflect the new pre-release state. [1] [2]