swayipc_command_builder/commands/
shortcuts_inhibitor.rs1use super::*;
2
3impl Command<ShortcutsInhibitor> {
4 pub fn enable(self) -> Command<Valid> {
5 self.push_str("enable").transmute()
6 }
7
8 pub fn disable(self) -> Command<Valid> {
9 self.push_str("disable").transmute()
10 }
11}