Compare commits
No commits in common. "20e4682100feb6b57c3e9bafcf977f5845b36ddc" and "90ee462d176336a8b67b3cf79a935684689ea07d" have entirely different histories.
20e4682100
...
90ee462d17
|
@ -21,6 +21,7 @@
|
|||
xdg.configFile."teams-for-linux/config.json".text = builtins.toJSON {
|
||||
awayOnSystemIdle = true;
|
||||
closeAppOnCross = true;
|
||||
electronCLIFlags = [["ozone-platform" "wayland"]];
|
||||
followSystemTheme = true;
|
||||
notificationMethod = "electron";
|
||||
optInTeamsV2 = true;
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
fonts,
|
||||
...
|
||||
|
@ -46,17 +48,10 @@
|
|||
};
|
||||
};
|
||||
|
||||
hotkeys.commands = {
|
||||
"launch-terminal" = {
|
||||
name = "Launch Alacritty Terminal Emulator";
|
||||
key = "Meta+Alt+T";
|
||||
command = "alacritty";
|
||||
};
|
||||
"launch-emacs" = {
|
||||
name = "Launch Emacs Client Window";
|
||||
key = "Meta+Alt+E";
|
||||
command = "emacsclient -c";
|
||||
};
|
||||
hotkeys.commands."launch-konsole" = {
|
||||
name = "Launch Konsole";
|
||||
key = "Meta+Alt+K";
|
||||
command = "konsole";
|
||||
};
|
||||
|
||||
panels = [
|
||||
|
@ -77,10 +72,9 @@
|
|||
name = "org.kde.plasma.icontasks";
|
||||
config = {
|
||||
General.launchers = [
|
||||
"applications:org.kde.dolphin.desktop"
|
||||
"applications:Alacritty.desktop"
|
||||
"applications:emacs.desktop"
|
||||
"applications:firefox.desktop"
|
||||
"applications:emacsclient.desktop"
|
||||
"applications:org.kde.dolphin.desktop"
|
||||
"applications:org.kde.elisa.desktop"
|
||||
];
|
||||
};
|
||||
|
@ -100,7 +94,15 @@
|
|||
|
||||
shortcuts = {
|
||||
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";
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Reference in a new issue