mirror of
https://github.com/pinnacle-comp/pinnacle.git
synced 2024-12-27 21:58:18 +01:00
195 lines
5.1 KiB
Rust
195 lines
5.1 KiB
Rust
// You should glob import these to prevent your config from getting cluttered.
|
|
use pinnacle_api::prelude::*;
|
|
use pinnacle_api::*;
|
|
|
|
fn main() {
|
|
// Connect to the Pinnacle server.
|
|
// This needs to be called before you start calling any config functions.
|
|
pinnacle_api::connect().unwrap();
|
|
|
|
let mod_key = Modifier::Ctrl;
|
|
|
|
let terminal = "alacritty";
|
|
|
|
process::set_env("MOZ_ENABLE_WAYLAND", "1");
|
|
|
|
// You must create a callback_vec to hold your callbacks.
|
|
// Rust is not Lua, so it takes a bit more work to get captures working.
|
|
//
|
|
// Anything that requires a callback will also require a mut reference to this struct.
|
|
//
|
|
// Additionally, all callbacks also take in `&mut CallbackVec`.
|
|
// This allows you to call functions that need callbacks within other callbacks.
|
|
let mut callback_vec = CallbackVec::new();
|
|
|
|
// Keybinds.
|
|
|
|
input::mousebind(
|
|
&[mod_key],
|
|
MouseButton::Left,
|
|
MouseEdge::Press,
|
|
move |_| {
|
|
window::begin_move(MouseButton::Left);
|
|
},
|
|
&mut callback_vec,
|
|
);
|
|
|
|
input::mousebind(
|
|
&[mod_key],
|
|
MouseButton::Right,
|
|
MouseEdge::Press,
|
|
move |_| {
|
|
window::begin_resize(MouseButton::Right);
|
|
},
|
|
&mut callback_vec,
|
|
);
|
|
|
|
input::keybind(
|
|
&[mod_key, Modifier::Alt],
|
|
'q',
|
|
|_| pinnacle::quit(),
|
|
&mut callback_vec,
|
|
);
|
|
|
|
input::keybind(
|
|
&[mod_key, Modifier::Alt],
|
|
'c',
|
|
move |_| {
|
|
if let Some(window) = window::get_focused() {
|
|
window.close();
|
|
}
|
|
},
|
|
&mut callback_vec,
|
|
);
|
|
|
|
input::keybind(
|
|
&[mod_key],
|
|
xkbcommon::xkb::keysyms::KEY_Return,
|
|
move |_| {
|
|
process::spawn(vec![terminal]).unwrap();
|
|
},
|
|
&mut callback_vec,
|
|
);
|
|
|
|
input::keybind(
|
|
&[mod_key, Modifier::Alt],
|
|
xkbcommon::xkb::keysyms::KEY_space,
|
|
move |_| {
|
|
if let Some(window) = window::get_focused() {
|
|
window.toggle_floating();
|
|
}
|
|
},
|
|
&mut callback_vec,
|
|
);
|
|
|
|
input::keybind(
|
|
&[mod_key],
|
|
'f',
|
|
move |_| {
|
|
if let Some(window) = window::get_focused() {
|
|
window.toggle_fullscreen();
|
|
}
|
|
},
|
|
&mut callback_vec,
|
|
);
|
|
|
|
input::keybind(
|
|
&[mod_key],
|
|
'm',
|
|
move |_| {
|
|
if let Some(window) = window::get_focused() {
|
|
window.toggle_maximized();
|
|
}
|
|
},
|
|
&mut callback_vec,
|
|
);
|
|
|
|
let tags = ["1", "2", "3", "4", "5"];
|
|
|
|
output::connect_for_all(
|
|
move |output, _| {
|
|
tag::add(&output, tags.as_slice());
|
|
tag::get("1", Some(&output)).unwrap().toggle();
|
|
},
|
|
&mut callback_vec,
|
|
);
|
|
|
|
let mut layout_cycler = tag::layout_cycler(&[
|
|
Layout::MasterStack,
|
|
Layout::Dwindle,
|
|
Layout::Spiral,
|
|
Layout::CornerTopLeft,
|
|
Layout::CornerTopRight,
|
|
Layout::CornerBottomLeft,
|
|
Layout::CornerBottomRight,
|
|
]);
|
|
|
|
input::keybind(
|
|
&[mod_key],
|
|
xkbcommon::xkb::keysyms::KEY_space,
|
|
move |_| {
|
|
(layout_cycler.next)(None);
|
|
},
|
|
&mut callback_vec,
|
|
);
|
|
|
|
input::keybind(
|
|
&[mod_key, Modifier::Shift],
|
|
xkbcommon::xkb::keysyms::KEY_space,
|
|
move |_| {
|
|
(layout_cycler.prev)(None);
|
|
},
|
|
&mut callback_vec,
|
|
);
|
|
|
|
// Keybinds for tags
|
|
|
|
for tag_name in tags.iter().map(|t| t.to_string()) {
|
|
let t = tag_name.clone();
|
|
input::keybind(
|
|
&[mod_key],
|
|
tag_name.chars().next().unwrap(),
|
|
move |_| {
|
|
tag::get(&t, None).unwrap().switch_to();
|
|
},
|
|
&mut callback_vec,
|
|
);
|
|
let t = tag_name.clone();
|
|
input::keybind(
|
|
&[mod_key, Modifier::Shift],
|
|
tag_name.chars().next().unwrap(),
|
|
move |_| {
|
|
tag::get(&t, None).unwrap().toggle();
|
|
},
|
|
&mut callback_vec,
|
|
);
|
|
let t = tag_name.clone();
|
|
input::keybind(
|
|
&[mod_key, Modifier::Alt],
|
|
tag_name.chars().next().unwrap(),
|
|
move |_| {
|
|
if let Some(window) = window::get_focused() {
|
|
window.move_to_tag(&tag::get(&t, None).unwrap());
|
|
}
|
|
},
|
|
&mut callback_vec,
|
|
);
|
|
let t = tag_name.clone();
|
|
input::keybind(
|
|
&[mod_key, Modifier::Shift, Modifier::Alt],
|
|
tag_name.chars().next().unwrap(),
|
|
move |_| {
|
|
if let Some(window) = window::get_focused() {
|
|
window.toggle_tag(&tag::get(&t, None).unwrap());
|
|
}
|
|
},
|
|
&mut callback_vec,
|
|
);
|
|
}
|
|
|
|
// At the very end of your config, you will need to start listening to Pinnacle in order for
|
|
// your callbacks to be correctly called.
|
|
//
|
|
// This will not return unless an error occurs.
|
|
pinnacle_api::listen(callback_vec);
|
|
}
|