aboutsummaryrefslogtreecommitdiff
path: root/src/Keybind.zig
diff options
context:
space:
mode:
authorIsaac Freund <ifreund@ifreund.xyz>2020-05-19 22:59:50 +0200
committerIsaac Freund <ifreund@ifreund.xyz>2020-05-19 22:59:50 +0200
commitcee41e925dc0a9d7460806c9f8386512b207edf3 (patch)
tree75799b00cf703d4196864a261e01ff8ec53699f2 /src/Keybind.zig
parent569308d91b7d6ea19a283a3db4a612f9e5d881d7 (diff)
downloadriver-cee41e925dc0a9d7460806c9f8386512b207edf3.tar.gz
river-cee41e925dc0a9d7460806c9f8386512b207edf3.tar.xz
Implement command execution through riverctl
Diffstat (limited to 'src/Keybind.zig')
-rw-r--r--src/Keybind.zig5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/Keybind.zig b/src/Keybind.zig
index 9a156ad..d82be7a 100644
--- a/src/Keybind.zig
+++ b/src/Keybind.zig
@@ -16,9 +16,8 @@
// along with this program. If not, see <https://www.gnu.org/licenses/>.
const c = @import("c.zig");
-const command = @import("command.zig");
+const Command = @import("Command.zig");
keysym: c.xkb_keysym_t,
modifiers: u32,
-command: command.Command,
-arg: command.Arg,
+command: Command,