mirror of
https://github.com/pinnacle-comp/pinnacle.git
synced 2024-12-28 22:23:47 +01:00
151 lines
4.2 KiB
Rust
151 lines
4.2 KiB
Rust
use pinnacle_api::xkbcommon::xkb::Keysym;
|
|
use pinnacle_api::{
|
|
input::{Mod, MouseButton, MouseEdge},
|
|
tag::{Layout, LayoutCycler},
|
|
ApiModules,
|
|
};
|
|
|
|
#[pinnacle_api::config(modules)]
|
|
async fn main() {
|
|
let ApiModules {
|
|
pinnacle,
|
|
process,
|
|
window,
|
|
input,
|
|
output,
|
|
tag,
|
|
} = modules;
|
|
|
|
let mod_key = Mod::Ctrl;
|
|
|
|
let terminal = "alacritty";
|
|
|
|
// Mousebinds
|
|
|
|
// `mod_key + left click` starts moving a window
|
|
input.mousebind([mod_key], MouseButton::Left, MouseEdge::Press, || {
|
|
window.begin_move(MouseButton::Left);
|
|
});
|
|
|
|
// `mod_key + right click` starts resizing a window
|
|
input.mousebind([mod_key], MouseButton::Right, MouseEdge::Press, || {
|
|
window.begin_resize(MouseButton::Right);
|
|
});
|
|
|
|
// Keybinds
|
|
|
|
// `mod_key + alt + q` quits Pinnacle
|
|
input.keybind([mod_key, Mod::Alt], 'q', || {
|
|
pinnacle.quit();
|
|
});
|
|
|
|
// `mod_key + alt + c` closes the focused window
|
|
input.keybind([mod_key, Mod::Alt], 'c', || {
|
|
if let Some(window) = window.get_focused() {
|
|
window.close();
|
|
}
|
|
});
|
|
|
|
// `mod_key + Return` spawns a terminal
|
|
input.keybind([mod_key], Keysym::Return, move || {
|
|
process.spawn([terminal]);
|
|
});
|
|
|
|
// `mod_key + alt + space` toggles floating
|
|
input.keybind([mod_key, Mod::Alt], Keysym::space, || {
|
|
if let Some(window) = window.get_focused() {
|
|
window.toggle_floating();
|
|
}
|
|
});
|
|
|
|
// `mod_key + f` toggles fullscreen
|
|
input.keybind([mod_key], 'f', || {
|
|
if let Some(window) = window.get_focused() {
|
|
window.toggle_fullscreen();
|
|
}
|
|
});
|
|
|
|
// `mod_key + m` toggles maximized
|
|
input.keybind([mod_key], 'm', || {
|
|
if let Some(window) = window.get_focused() {
|
|
window.toggle_maximized();
|
|
}
|
|
});
|
|
|
|
// Window rules
|
|
//
|
|
// You can define window rules to get windows to open with desired properties.
|
|
// See `pinnacle_api::window::rules` in the docs for more information.
|
|
|
|
// Tags
|
|
|
|
let tag_names = ["1", "2", "3", "4", "5"];
|
|
|
|
// Setup all monitors with tags "1" through "5"
|
|
output.connect_for_all(move |op| {
|
|
let tags = tag.add(op, tag_names);
|
|
|
|
// Be sure to set a tag to active or windows won't display
|
|
tags.first().unwrap().set_active(true);
|
|
});
|
|
|
|
process.spawn_once([terminal]);
|
|
|
|
// Create a layout cycler to cycle through the given layouts
|
|
let LayoutCycler {
|
|
prev: layout_prev,
|
|
next: layout_next,
|
|
} = tag.new_layout_cycler([
|
|
Layout::MasterStack,
|
|
Layout::Dwindle,
|
|
Layout::Spiral,
|
|
Layout::CornerTopLeft,
|
|
Layout::CornerTopRight,
|
|
Layout::CornerBottomLeft,
|
|
Layout::CornerBottomRight,
|
|
]);
|
|
|
|
// `mod_key + space` cycles to the next layout
|
|
input.keybind([mod_key], Keysym::space, move || {
|
|
layout_next(None);
|
|
});
|
|
|
|
// `mod_key + shift + space` cycles to the previous layout
|
|
input.keybind([mod_key, Mod::Shift], Keysym::space, move || {
|
|
layout_prev(None);
|
|
});
|
|
|
|
for tag_name in tag_names {
|
|
// `mod_key + 1-5` switches to tag "1" to "5"
|
|
input.keybind([mod_key], tag_name, move || {
|
|
if let Some(tg) = tag.get(tag_name) {
|
|
tg.switch_to();
|
|
}
|
|
});
|
|
|
|
// `mod_key + shift + 1-5` toggles tag "1" to "5"
|
|
input.keybind([mod_key, Mod::Shift], tag_name, move || {
|
|
if let Some(tg) = tag.get(tag_name) {
|
|
tg.toggle_active();
|
|
}
|
|
});
|
|
|
|
// `mod_key + alt + 1-5` moves the focused window to tag "1" to "5"
|
|
input.keybind([mod_key, Mod::Alt], tag_name, move || {
|
|
if let Some(tg) = tag.get(tag_name) {
|
|
if let Some(win) = window.get_focused() {
|
|
win.move_to_tag(&tg);
|
|
}
|
|
}
|
|
});
|
|
|
|
// `mod_key + shift + alt + 1-5` toggles tag "1" to "5" on the focused window
|
|
input.keybind([mod_key, Mod::Shift, Mod::Alt], tag_name, move || {
|
|
if let Some(tg) = tag.get(tag_name) {
|
|
if let Some(win) = window.get_focused() {
|
|
win.toggle_tag(&tg);
|
|
}
|
|
}
|
|
});
|
|
}
|
|
}
|