feat: add alternating autotiling
This commit is contained in:
parent
ce14169d6b
commit
5c2f631fdb
17 changed files with 244 additions and 59 deletions
|
|
@ -2079,6 +2079,12 @@ impl ConfigClient {
|
|||
self.send(&ClientMessage::SetAutotile { enabled });
|
||||
}
|
||||
|
||||
pub fn get_autotile(&self) -> bool {
|
||||
let res = self.send_with_response(&ClientMessage::GetAutotile);
|
||||
get_response!(res, false, GetAutotile { enabled });
|
||||
enabled
|
||||
}
|
||||
|
||||
pub fn set_tab_title_align(&self, align: u32) {
|
||||
self.send(&ClientMessage::SetTabTitleAlign { align });
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue