input: Add unbound shortcut to toggle sticky state

This commit is contained in:
Victoria Brekenfeld 2023-12-20 20:21:04 +00:00 committed by Victoria Brekenfeld
parent d2e394b957
commit c50607afd5
3 changed files with 18 additions and 0 deletions

View file

@ -2360,6 +2360,19 @@ impl Shell {
}
}
pub fn toggle_sticky_current<'a>(
&mut self,
seats: impl Iterator<Item = &'a Seat<State>>,
seat: &Seat<State>,
) {
let set = self.workspaces.sets.get_mut(&seat.active_output()).unwrap();
let workspace = &mut set.workspaces[set.active];
let maybe_window = workspace.focus_stack.get(seat).iter().next().cloned();
if let Some(mapped) = maybe_window {
self.toggle_sticky(seats, seat, &mapped);
}
}
pub(crate) fn set_theme(&mut self, theme: cosmic::Theme) {
self.theme = theme.clone();
self.refresh();