allow to unfloat windows in qtile

This commit is contained in:
Andreas Zweili 2022-02-15 22:53:34 +01:00
parent 64d1371db1
commit 827a4adea9
2 changed files with 15 additions and 1 deletions

View File

@ -187,7 +187,7 @@ mouse = [
start=lazy.window.get_position()),
Drag([mod], "Button3", lazy.window.set_size_floating(),
start=lazy.window.get_size()),
Click([mod], "Button2", lazy.window.bring_to_front())
Click([mod], "Button2", lazy.window.toggle_floating())
]
dgroups_key_binder = None

View File

@ -0,0 +1,14 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
calibre
];
xdg.mimeApps = {
enable = true;
associations.removed = {
"application/pdf" = "calibre-ebook-viewer.desktop";
"text/anytext" = "calibre-ebook-viewer.desktop";
};
};
}