Add element
This commit is contained in:
parent
0eb50e795f
commit
a83ec768eb
2 changed files with 19 additions and 0 deletions
|
|
@ -126,6 +126,14 @@
|
||||||
matches = [ { app-id="^flameshot$"; } ];
|
matches = [ { app-id="^flameshot$"; } ];
|
||||||
open-floating = true;
|
open-floating = true;
|
||||||
}
|
}
|
||||||
|
{
|
||||||
|
matches = [ { app-id="^Lens$"; } ];
|
||||||
|
open-maximized = true;
|
||||||
|
}
|
||||||
|
{
|
||||||
|
matches = [ { app-id="^element$"; } ];
|
||||||
|
open-maximized = true;
|
||||||
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
binds = {
|
binds = {
|
||||||
|
|
|
||||||
|
|
@ -37,6 +37,17 @@
|
||||||
lutris
|
lutris
|
||||||
steam
|
steam
|
||||||
easyeffects
|
easyeffects
|
||||||
|
|
||||||
|
# Wrap Element so it knows where gnome-libsecret it
|
||||||
|
(symlinkJoin {
|
||||||
|
name = "element-desktop";
|
||||||
|
paths = [ element-desktop ];
|
||||||
|
nativeBuildInputs = [ makeWrapper ];
|
||||||
|
postBuild = ''
|
||||||
|
wrapProgram $out/bin/element-desktop \
|
||||||
|
--add-flags "--password-store=gnome-libsecret"
|
||||||
|
'';
|
||||||
|
})
|
||||||
];
|
];
|
||||||
|
|
||||||
nixpkgs.overlays = [
|
nixpkgs.overlays = [
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue