Compare commits

..

No commits in common. "20e4682100feb6b57c3e9bafcf977f5845b36ddc" and "90ee462d176336a8b67b3cf79a935684689ea07d" have entirely different histories.

2 changed files with 18 additions and 15 deletions

View file

@ -21,6 +21,7 @@
xdg.configFile."teams-for-linux/config.json".text = builtins.toJSON { xdg.configFile."teams-for-linux/config.json".text = builtins.toJSON {
awayOnSystemIdle = true; awayOnSystemIdle = true;
closeAppOnCross = true; closeAppOnCross = true;
electronCLIFlags = [["ozone-platform" "wayland"]];
followSystemTheme = true; followSystemTheme = true;
notificationMethod = "electron"; notificationMethod = "electron";
optInTeamsV2 = true; optInTeamsV2 = true;

View file

@ -1,4 +1,6 @@
{ {
config,
lib,
pkgs, pkgs,
fonts, fonts,
... ...
@ -46,17 +48,10 @@
}; };
}; };
hotkeys.commands = { hotkeys.commands."launch-konsole" = {
"launch-terminal" = { name = "Launch Konsole";
name = "Launch Alacritty Terminal Emulator"; key = "Meta+Alt+K";
key = "Meta+Alt+T"; command = "konsole";
command = "alacritty";
};
"launch-emacs" = {
name = "Launch Emacs Client Window";
key = "Meta+Alt+E";
command = "emacsclient -c";
};
}; };
panels = [ panels = [
@ -77,10 +72,9 @@
name = "org.kde.plasma.icontasks"; name = "org.kde.plasma.icontasks";
config = { config = {
General.launchers = [ General.launchers = [
"applications:org.kde.dolphin.desktop"
"applications:Alacritty.desktop" "applications:Alacritty.desktop"
"applications:emacs.desktop" "applications:emacsclient.desktop"
"applications:firefox.desktop" "applications:org.kde.dolphin.desktop"
"applications:org.kde.elisa.desktop" "applications:org.kde.elisa.desktop"
]; ];
}; };
@ -100,7 +94,15 @@
shortcuts = { shortcuts = {
ksmserver = { ksmserver = {
"Lock Session" = ["Screensaver" "Meta+Alt+L"]; "Lock Session" = ["Screensaver" "Meta+Ctrl+Alt+L"];
};
kwin = {
"Expose" = "Meta+,";
"Switch Window Down" = "Meta+J";
"Switch Window Left" = "Meta+H";
"Switch Window Right" = "Meta+L";
"Switch Window Up" = "Meta+K";
}; };
}; };