proper amount of tabs

This commit is contained in:
Tao Tien 2025-04-30 19:29:00 -07:00
parent 92abf91263
commit 349da643c6
27 changed files with 2591 additions and 2584 deletions

View file

@ -1,261 +1,261 @@
{
config,
pkgs,
inputs,
lib,
...
config,
pkgs,
inputs,
lib,
...
}: let
cargoFile = builtins.readFile ./cargo.toml;
cargoConfig = builtins.replaceStrings ["/path/to/sccache" "/path/to/mold"] ["${pkgs.sccache}/bin/sccache" "${pkgs.mold}/bin/mold}"] cargoFile;
age.secrets.syncthing-NOcomputer.file = ../secrets/syncthing-NOcomputer.age;
age.secrets.syncthing-NOlaptop.file = ../secrets/syncthing-NOlaptop.age;
age.secrets.syncthing-uwuraid.file = ../secrets/syncthing-uwuraid.age;
cargoFile = builtins.readFile ./cargo.toml;
cargoConfig = builtins.replaceStrings ["/path/to/sccache" "/path/to/mold"] ["${pkgs.sccache}/bin/sccache" "${pkgs.mold}/bin/mold}"] cargoFile;
age.secrets.syncthing-NOcomputer.file = ../secrets/syncthing-NOcomputer.age;
age.secrets.syncthing-NOlaptop.file = ../secrets/syncthing-NOlaptop.age;
age.secrets.syncthing-uwuraid.file = ../secrets/syncthing-uwuraid.age;
in {
imports = [
./boxxy.nix
(import ./helix.nix {inherit pkgs inputs;})
# ./plasma.nix
# ./firefox.nix
];
imports = [
./boxxy.nix
(import ./helix.nix {inherit pkgs inputs;})
# ./plasma.nix
# ./firefox.nix
];
# home.sessionPath = [
# "/home/tao/.cargo/bin"
# ];
home.file.".cargo/config.toml".text = cargoConfig;
home.file.".config/autostart" = {
source = ./autostart;
recursive = true;
};
home.file.".config/direnv/lib/".source = ./direnv;
home.file.".config/direnv/lib/".recursive = true;
programs = {
bacon = {
enable = true;
settings.jobs.default = {
command = [
"cargo"
"clippy"
"--"
"-A"
"clippy::bool_to_int_with_if"
"-A"
"clippy::collapsible_else_if"
"-A"
"clippy::collapsible_if"
"-A"
"clippy::derive_partial_eq_without_eq"
"-A"
"clippy::get_first"
"-A"
"clippy::if_same_then_else"
"-A"
"clippy::len_without_is_empty"
"-A"
"clippy::map_entry"
"-A"
"clippy::while_let_on_iterator"
];
need_stdout = false;
};
# home.sessionPath = [
# "/home/tao/.cargo/bin"
# ];
home.file.".cargo/config.toml".text = cargoConfig;
home.file.".config/autostart" = {
source = ./autostart;
recursive = true;
};
home.file.".config/direnv/lib/".source = ./direnv;
home.file.".config/direnv/lib/".recursive = true;
bat = {
enable = true;
config = {
theme = "gruvbox-dark";
};
};
bottom = {
enable = true;
settings = {
color = "gruvbox";
flags = {
battery =
# if lib.strings.hasPrefix "NOlaptop" (builtins.readFile /etc/hostname)
# then true
# else false;
true;
hide_time = true;
enable_gpu = true;
programs = {
bacon = {
enable = true;
settings.jobs.default = {
command = [
"cargo"
"clippy"
"--"
"-A"
"clippy::bool_to_int_with_if"
"-A"
"clippy::collapsible_else_if"
"-A"
"clippy::collapsible_if"
"-A"
"clippy::derive_partial_eq_without_eq"
"-A"
"clippy::get_first"
"-A"
"clippy::if_same_then_else"
"-A"
"clippy::len_without_is_empty"
"-A"
"clippy::map_entry"
"-A"
"clippy::while_let_on_iterator"
];
need_stdout = false;
};
};
};
};
direnv = {
enable = true;
enableNushellIntegration = true;
nix-direnv.enable = true;
};
jujutsu = {
enable = true;
settings = {
user = {
name = "Tao Tien";
email = "29749622+taotien@users.noreply.github.com";
bat = {
enable = true;
config = {
theme = "gruvbox-dark";
};
};
ui = {
default-command = "log";
bottom = {
enable = true;
settings = {
color = "gruvbox";
flags = {
battery =
# if lib.strings.hasPrefix "NOlaptop" (builtins.readFile /etc/hostname)
# then true
# else false;
true;
hide_time = true;
enable_gpu = true;
};
};
};
};
# package = inputs.jujutsu.packages.${pkgs.system}.default;
};
git = {
enable = true;
userName = "Tao Tien";
userEmail = "29749622+taotien@users.noreply.github.com";
# extraConfig = {
# };
ignores = [
"/target"
".direnv"
];
};
nushell = {
enable = true;
configFile.source = ./nushell/config.nu;
envFile.source = ./nushell/env.nu;
# extraConfig = builtins.readFile ./nushell/stuff.nu;
extraConfig = lib.concatStrings (map builtins.readFile (map (x: ./nushell/extras/. + x) (map (x: "/" + x) (builtins.attrNames (builtins.readDir ./nushell/extras)))));
};
ssh = {
enable = true;
addKeysToAgent = "yes";
compression = true;
matchBlocks = {
"stargate" = {
hostname = "stargate.cs.usfca.edu";
user = "tltien";
forwardAgent = true;
identityFile = "/home/tao/.ssh/id_ed25519";
direnv = {
enable = true;
enableNushellIntegration = true;
nix-direnv.enable = true;
};
"griffin" = {
hostname = "griffin.cs.usfca.edu";
user = "tltien";
forwardAgent = true;
identityFile = "/home/tao/.ssh/id_ed25519";
# proxyCommand = "ssh griffin.cs.usfca.edu";
jujutsu = {
enable = true;
settings = {
user = {
name = "Tao Tien";
email = "29749622+taotien@users.noreply.github.com";
};
ui = {
default-command = "log";
};
};
# package = inputs.jujutsu.packages.${pkgs.system}.default;
};
"github" = {
hostname = "github.com";
forwardAgent = true;
identityFile = "/home/tao/.ssh/id_ed25519";
git = {
enable = true;
userName = "Tao Tien";
userEmail = "29749622+taotien@users.noreply.github.com";
# extraConfig = {
# };
ignores = [
"/target"
".direnv"
];
};
};
};
starship = {
enable = true;
enableNushellIntegration = true;
settings = builtins.fromTOML (builtins.readFile ./starship.toml);
};
nushell = {
enable = true;
configFile.source = ./nushell/config.nu;
envFile.source = ./nushell/env.nu;
# extraConfig = builtins.readFile ./nushell/stuff.nu;
extraConfig = lib.concatStrings (map builtins.readFile (map (x: ./nushell/extras/. + x) (map (x: "/" + x) (builtins.attrNames (builtins.readDir ./nushell/extras)))));
};
# taskwarrior = {
# enable = true;
# package = pkgs.taskwarrior3;
# dataLocation = "/home/tao/sync";
# };
ssh = {
enable = true;
addKeysToAgent = "yes";
compression = true;
matchBlocks = {
"stargate" = {
hostname = "stargate.cs.usfca.edu";
user = "tltien";
forwardAgent = true;
identityFile = "/home/tao/.ssh/id_ed25519";
};
"griffin" = {
hostname = "griffin.cs.usfca.edu";
user = "tltien";
forwardAgent = true;
identityFile = "/home/tao/.ssh/id_ed25519";
# proxyCommand = "ssh griffin.cs.usfca.edu";
};
"github" = {
hostname = "github.com";
forwardAgent = true;
identityFile = "/home/tao/.ssh/id_ed25519";
};
};
};
wezterm = {
enable = true;
extraConfig = builtins.readFile ./wezterm.lua;
};
starship = {
enable = true;
enableNushellIntegration = true;
settings = builtins.fromTOML (builtins.readFile ./starship.toml);
};
zathura = {
enable = true;
options = {
selection-clipboard = "clipboard";
};
};
zellij = {
enable = true;
settings = {};
};
zoxide = {
enable = true;
enableNushellIntegration = true;
};
};
services = {
pueue = {
enable = true;
settings = {};
};
};
services.syncthing = {
enable = true;
# user = "tao";
# dataDir = "/home/tao/sync";
# configDir = "/home/tao/.config/syncthing";
overrideDevices = true;
overrideFolders = true;
# openDefaultPorts = true;
settings = {
devices = {
# we do a lil anti-patterns https://github.com/ryantm/agenix?tab=readme-ov-file#builtinsreadfile-anti-pattern
# bootstrap by commenting out devices first and rebuild switch impurely
"nocomputer".id = builtins.readFile config.age.secrets.syncthing-NOcomputer.path;
"nolaptop".id = builtins.readFile config.age.secrets.syncthing-NOlaptop.path;
"uwuraid".id = builtins.readFile config.age.secrets.syncthing-uwuraid.path;
};
folders = let
devs = [
"nocomputer"
"nolaptop"
"uwuraid"
];
in {
# "documents" = {
# path = "/home/tao/documents";
# devices = devs;
# taskwarrior = {
# enable = true;
# package = pkgs.taskwarrior3;
# dataLocation = "/home/tao/sync";
# };
"pictures" = {
path = "/home/tao/pictures";
devices = devs;
wezterm = {
enable = true;
extraConfig = builtins.readFile ./wezterm.lua;
};
"projects" = {
path = "/home/tao/projects";
devices = devs;
zathura = {
enable = true;
options = {
selection-clipboard = "clipboard";
};
};
"school" = {
path = "/home/tao/school";
devices = devs;
zellij = {
enable = true;
settings = {};
};
"sync" = {
path = "/home/tao/sync";
devices = devs;
zoxide = {
enable = true;
enableNushellIntegration = true;
};
# "work" = {
# path = "/home/tao/work";
# devices = devs;
# };
};
};
};
xdg.userDirs = {
desktop = "desktop";
documents = "documents";
download = "downloads";
music = "music";
pictures = "pictures";
templates = "templates";
videos = "videos";
publicShare = null;
createDirectories = true;
enable = true;
};
services = {
pueue = {
enable = true;
settings = {};
};
};
home.username = "tao";
home.homeDirectory = "/home/tao";
home.stateVersion = "23.11";
services.syncthing = {
enable = true;
# user = "tao";
# dataDir = "/home/tao/sync";
# configDir = "/home/tao/.config/syncthing";
overrideDevices = true;
overrideFolders = true;
# openDefaultPorts = true;
settings = {
devices = {
# we do a lil anti-patterns https://github.com/ryantm/agenix?tab=readme-ov-file#builtinsreadfile-anti-pattern
# bootstrap by commenting out devices first and rebuild switch impurely
"nocomputer".id = builtins.readFile config.age.secrets.syncthing-NOcomputer.path;
"nolaptop".id = builtins.readFile config.age.secrets.syncthing-NOlaptop.path;
"uwuraid".id = builtins.readFile config.age.secrets.syncthing-uwuraid.path;
};
folders = let
devs = [
"nocomputer"
"nolaptop"
"uwuraid"
];
in {
# "documents" = {
# path = "/home/tao/documents";
# devices = devs;
# };
"pictures" = {
path = "/home/tao/pictures";
devices = devs;
};
"projects" = {
path = "/home/tao/projects";
devices = devs;
};
"school" = {
path = "/home/tao/school";
devices = devs;
};
"sync" = {
path = "/home/tao/sync";
devices = devs;
};
# "work" = {
# path = "/home/tao/work";
# devices = devs;
# };
};
};
};
xdg.userDirs = {
desktop = "desktop";
documents = "documents";
download = "downloads";
music = "music";
pictures = "pictures";
templates = "templates";
videos = "videos";
publicShare = null;
createDirectories = true;
enable = true;
};
home.username = "tao";
home.homeDirectory = "/home/tao";
home.stateVersion = "23.11";
}

View file

@ -1,22 +1,22 @@
{
programs.boxxy = {
rules = [
# {
# name = "arduino-cli";
# target = "~/.arduino15";
# rewrite = "~/.local/share/arduino/cli";
# }
# {
# name = "arduino-cli";
# target = "~/Arduino";
# rewrite = "~/.local/share/arduino/ide";
# }
# {
# name = "arduino-cli";
# target = "~/.jssc";
# rewrite = "~/.local/share/arduino/jssc";
# }
];
enable = true;
};
programs.boxxy = {
rules = [
# {
# name = "arduino-cli";
# target = "~/.arduino15";
# rewrite = "~/.local/share/arduino/cli";
# }
# {
# name = "arduino-cli";
# target = "~/Arduino";
# rewrite = "~/.local/share/arduino/ide";
# }
# {
# name = "arduino-cli";
# target = "~/.jssc";
# rewrite = "~/.local/share/arduino/jssc";
# }
];
enable = true;
};
}

View file

@ -1,14 +1,14 @@
{...}: {
programs.firefox = {
# policies = {
# };
# enable = true;
# profiles.default.settings = {
# "browser.newtabpage.activity-stream.feeds.discoverystreamfeed" = false;
# "browser.newtabpage.activity-stream.feeds.section.topstories" = false;
# "browser.newtabpage.activity-stream.section.highlights.includePocket" = false;
# "browser.newtabpage.activity-stream.showSponsored" = false;
# "extensions.pocket.enabled" = false;
# };
};
programs.firefox = {
# policies = {
# };
# enable = true;
# profiles.default.settings = {
# "browser.newtabpage.activity-stream.feeds.discoverystreamfeed" = false;
# "browser.newtabpage.activity-stream.feeds.section.topstories" = false;
# "browser.newtabpage.activity-stream.section.highlights.includePocket" = false;
# "browser.newtabpage.activity-stream.showSponsored" = false;
# "extensions.pocket.enabled" = false;
# };
};
}

View file

@ -1,267 +1,267 @@
{
inputs,
pkgs,
...
inputs,
pkgs,
...
}: {
programs.helix = {
settings = {
theme = "gruvbox_dark_hard";
editor = {
end-of-line-diagnostics = "hint";
inline-diagnostics = {
cursor-line = "warning";
};
auto-save = {
focus-lost = true;
after-delay.enable = true;
after-delay.timeout = 1000;
};
shell = ["nu" "--stdin" "-c"];
# rainbow-brackets = true;
line-number = "relative";
cursorline = true;
completion-replace = false;
preview-completion-insert = false;
indent-guides = {
render = true;
skip-levels = 2;
};
cursor-shape = {
insert = "bar";
select = "underline";
};
statusline = {
left = ["mode" "spinner" "spacer" "version-control"];
center = ["file-name" "file-modification-indicator"];
right = ["diagnostics" "primary-selection-length" "total-line-numbers" "selections" "position"];
};
lsp = {
display-messages = true;
display-inlay-hints = true;
display-progress-messages = true;
};
soft-wrap.enable = true;
smart-tab.supersede-menu = false;
};
keys.insert = {
C-space = "completion";
k = {k = "normal_mode";};
};
keys.normal = {
k = "move_line_down";
j = "move_line_up";
};
keys.select = {
k = "extend_line_down";
j = "extend_line_up";
};
keys.normal.space.w = {
k = "jump_view_down";
j = "jump_view_up";
K = "swap_view_down";
J = "swap_view_up";
};
keys.normal.space.t = {
r = "@mip:reflow<ret>";
s = "@|lines | sort | to text<ret>";
};
};
languages = {
use-grammars.only = [
"bash"
"c"
"cpp"
"gas"
"html"
"just"
"markdown"
"nix"
"rust"
"scheme"
"sql"
"toml"
"typst"
];
language = [
{
name = "typst";
text-width = 100;
}
{
name = "sql";
language-servers = ["sqls"];
}
{
name = "go";
formatter.command = "goimports";
}
{
name = "arduino";
grammar = "arduino";
scope = "source.arduino";
injection-regex = "arduino";
file-types = ["ino" "cpp" "h"];
comment-token = "//";
roots = ["*.ino" "sketch.yaml"];
language-servers = ["arduino-language-server"];
indent = {
tab-width = 8;
unit = "\t";
};
auto-format = true;
formatter = {
command = "clang-format";
args = ["--style=file:/home/tao/templates/clang-format"];
};
}
{
name = "c";
auto-format = true;
formatter = {
command = "clang-format";
args = ["--style=file:/home/tao/templates/clang-format"];
};
indent = {
tab-width = 8;
unit = "\t";
};
}
{
name = "cpp";
auto-format = true;
formatter = {
command = "clang-format";
args = ["--style=file:/home/tao/templates/clang-format"];
};
indent = {
tab-width = 8;
unit = "\t";
};
file-types = [
"cc"
"hh"
"c++"
"cpp"
"hpp"
"h"
"ipp"
"tpp"
"cxx"
"hxx"
"ixx"
"txx"
"C"
"H"
"cu"
"cuh"
"cppm"
"h++"
"ii"
"inl"
{glob = ".hpp.in";}
{glob = ".h.in";}
];
}
{
name = "html";
auto-format = false;
indent = {
tab-width = 4;
unit = "\t";
};
}
# {
# name = "java";
# auto-format = true;
# indent = {
# tab-width = 4;
# unit = "\t";
# };
# }
{
name = "javascript";
auto-format = true;
indent = {
tab-width = 4;
unit = "\t";
};
}
{
name = "nix";
auto-format = true;
formatter = {command = "alejandra";};
}
{
name = "toml";
auto-format = true;
}
{
name = "typst";
language-servers = ["tinymist"];
}
{
name = "scheme";
language-servers = ["steel"];
}
];
language-servers = {
rust-analyzer.config = {
server.path = "/home/tao/.cargo/bin/rust-analyzer";
procMacro = {
ignored = {
leptos_macro = [
# Optional:
# "component",
"server"
];
programs.helix = {
settings = {
theme = "gruvbox_dark_hard";
editor = {
end-of-line-diagnostics = "hint";
inline-diagnostics = {
cursor-line = "warning";
};
auto-save = {
focus-lost = true;
after-delay.enable = true;
after-delay.timeout = 1000;
};
shell = ["nu" "--stdin" "-c"];
# rainbow-brackets = true;
line-number = "relative";
cursorline = true;
completion-replace = false;
preview-completion-insert = false;
indent-guides = {
render = true;
skip-levels = 2;
};
cursor-shape = {
insert = "bar";
select = "underline";
};
statusline = {
left = ["mode" "spinner" "spacer" "version-control"];
center = ["file-name" "file-modification-indicator"];
right = ["diagnostics" "primary-selection-length" "total-line-numbers" "selections" "position"];
};
lsp = {
display-messages = true;
display-inlay-hints = true;
display-progress-messages = true;
};
soft-wrap.enable = true;
smart-tab.supersede-menu = false;
};
keys.insert = {
C-space = "completion";
k = {k = "normal_mode";};
};
keys.normal = {
k = "move_line_down";
j = "move_line_up";
};
keys.select = {
k = "extend_line_down";
j = "extend_line_up";
};
keys.normal.space.w = {
k = "jump_view_down";
j = "jump_view_up";
K = "swap_view_down";
J = "swap_view_up";
};
keys.normal.space.t = {
r = "@mip:reflow<ret>";
s = "@|lines | sort | to text<ret>";
};
};
};
};
language-server = {
rust-analyzer.config.check.command = "clippy";
# gas = {
# command = "asm-lsp";
# };
# jdtls = {
# command = "jdtls";
# args = ["-data" "/home/tao/.cache/jdtls/workspace"];
# };
arduino-language-server = {
command = "boxxy";
args = ["arduino-language-server" "-cli" "arduino-cli" "-cli-config" "~/.local/share/arduino/cli/arduino-cli.yaml" "-jobs" "0"];
languages = {
use-grammars.only = [
"bash"
"c"
"cpp"
"gas"
"html"
"just"
"markdown"
"nix"
"rust"
"scheme"
"sql"
"toml"
"typst"
];
language = [
{
name = "typst";
text-width = 100;
}
{
name = "sql";
language-servers = ["sqls"];
}
{
name = "go";
formatter.command = "goimports";
}
{
name = "arduino";
grammar = "arduino";
scope = "source.arduino";
injection-regex = "arduino";
file-types = ["ino" "cpp" "h"];
comment-token = "//";
roots = ["*.ino" "sketch.yaml"];
language-servers = ["arduino-language-server"];
indent = {
tab-width = 8;
unit = "\t";
};
auto-format = true;
formatter = {
command = "clang-format";
args = ["--style=file:/home/tao/templates/clang-format"];
};
}
{
name = "c";
auto-format = true;
formatter = {
command = "clang-format";
args = ["--style=file:/home/tao/templates/clang-format"];
};
indent = {
tab-width = 8;
unit = "\t";
};
}
{
name = "cpp";
auto-format = true;
formatter = {
command = "clang-format";
args = ["--style=file:/home/tao/templates/clang-format"];
};
indent = {
tab-width = 8;
unit = "\t";
};
file-types = [
"cc"
"hh"
"c++"
"cpp"
"hpp"
"h"
"ipp"
"tpp"
"cxx"
"hxx"
"ixx"
"txx"
"C"
"H"
"cu"
"cuh"
"cppm"
"h++"
"ii"
"inl"
{glob = ".hpp.in";}
{glob = ".h.in";}
];
}
{
name = "html";
auto-format = false;
indent = {
tab-width = 4;
unit = "\t";
};
}
# {
# name = "java";
# auto-format = true;
# indent = {
# tab-width = 4;
# unit = "\t";
# };
# }
{
name = "javascript";
auto-format = true;
indent = {
tab-width = 4;
unit = "\t";
};
}
{
name = "nix";
auto-format = true;
formatter = {command = "alejandra";};
}
{
name = "toml";
auto-format = true;
}
{
name = "typst";
language-servers = ["tinymist"];
}
{
name = "scheme";
language-servers = ["steel"];
}
];
language-servers = {
rust-analyzer.config = {
server.path = "/home/tao/.cargo/bin/rust-analyzer";
procMacro = {
ignored = {
leptos_macro = [
# Optional:
# "component",
"server"
];
};
};
};
};
language-server = {
rust-analyzer.config.check.command = "clippy";
# gas = {
# command = "asm-lsp";
# };
# jdtls = {
# command = "jdtls";
# args = ["-data" "/home/tao/.cache/jdtls/workspace"];
# };
arduino-language-server = {
command = "boxxy";
args = ["arduino-language-server" "-cli" "arduino-cli" "-cli-config" "~/.local/share/arduino/cli/arduino-cli.yaml" "-jobs" "0"];
};
# gopls = {
# config = {
# unusedVariable = false;
# };
# };
sqls = {
command = "sqls";
};
tinymist = {
command = "tinymist";
config = {
exportPdf = "onType";
outputPath = "$root/$dir/$name";
};
};
steel-language-server = {
command = "steel-language-server";
};
};
grammar = [
{
name = "arduino";
source = {
git = "https://github.com/tree-sitter-grammars/tree-sitter-arduino";
rev = "8518c3fa6b8562af545a496d55c9abd78f53e732";
};
}
];
};
# gopls = {
# config = {
# unusedVariable = false;
# };
# };
sqls = {
command = "sqls";
};
tinymist = {
command = "tinymist";
config = {
exportPdf = "onType";
outputPath = "$root/$dir/$name";
};
};
steel-language-server = {
command = "steel-language-server";
};
};
grammar = [
{
name = "arduino";
source = {
git = "https://github.com/tree-sitter-grammars/tree-sitter-arduino";
rev = "8518c3fa6b8562af545a496d55c9abd78f53e732";
};
}
];
enable = true;
defaultEditor = true;
# package = inputs.helix.packages.${pkgs.system}.default;
};
enable = true;
defaultEditor = true;
# package = inputs.helix.packages.${pkgs.system}.default;
};
}

View file

@ -1,382 +1,382 @@
{
programs.plasma = {
enable = true;
shortcuts = {
"ActivityManager"."switch-to-activity-4c4b4e59-b0da-4a45-b9cc-729233bb1e9a" = [ ];
"KDE Keyboard Layout Switcher"."Switch keyboard layout to English (US)" = [ ];
"KDE Keyboard Layout Switcher"."Switch keyboard layout to English (Workman)" = [ ];
"KDE Keyboard Layout Switcher"."Switch to Last-Used Keyboard Layout" = "Meta+Alt+L";
"KDE Keyboard Layout Switcher"."Switch to Next Keyboard Layout" = "Meta+Alt+K";
"kaccess"."Toggle Screen Reader On and Off" = "Meta+Alt+S";
"kcm_touchpad"."Disable Touchpad" = "Touchpad Off";
"kcm_touchpad"."Enable Touchpad" = "Touchpad On";
"kcm_touchpad"."Toggle Touchpad" = ["Meta+Shift+Space" "Touchpad Toggle" "Meta+Ctrl+Zenkaku Hankaku"];
"kmix"."decrease_microphone_volume" = "Microphone Volume Down";
"kmix"."decrease_volume" = "Volume Down";
"kmix"."decrease_volume_small" = "Shift+Volume Down";
"kmix"."increase_microphone_volume" = "Microphone Volume Up";
"kmix"."increase_volume" = "Volume Up";
"kmix"."increase_volume_small" = "Shift+Volume Up";
"kmix"."mic_mute" = ["Microphone Mute" "Meta+Volume Mute"];
"kmix"."mute" = "Volume Mute";
"ksmserver"."Halt Without Confirmation" = [ ];
"ksmserver"."Lock Session" = ["Meta+L" "Screensaver"];
"ksmserver"."Log Out" = "Ctrl+Alt+Del";
"ksmserver"."Log Out Without Confirmation" = [ ];
"ksmserver"."Reboot" = [ ];
"ksmserver"."Reboot Without Confirmation" = [ ];
"ksmserver"."Shut Down" = [ ];
"kwin"."Activate Window Demanding Attention" = "Meta+Ctrl+A";
"kwin"."Cycle Overview" = [ ];
"kwin"."Cycle Overview Opposite" = [ ];
"kwin"."Decrease Opacity" = [ ];
"kwin"."Edit Tiles" = "Meta+T";
"kwin"."Expose" = "Ctrl+F9";
"kwin"."ExposeAll" = ["Ctrl+F10" "Launch (C)"];
"kwin"."ExposeClass" = "Ctrl+F7";
"kwin"."ExposeClassCurrentDesktop" = [ ];
"kwin"."Grid View" = [ ];
"kwin"."Increase Opacity" = [ ];
"kwin"."Kill Window" = "Meta+Ctrl+Esc";
"kwin"."Move Tablet to Next Output" = [ ];
"kwin"."MoveMouseToCenter" = "Meta+F6";
"kwin"."MoveMouseToFocus" = "Meta+F5";
"kwin"."MoveZoomDown" = [ ];
"kwin"."MoveZoomLeft" = [ ];
"kwin"."MoveZoomRight" = [ ];
"kwin"."MoveZoomUp" = [ ];
"kwin"."Overview" = [ ];
"kwin"."Setup Window Shortcut" = [ ];
"kwin"."Show Desktop" = "Meta+D";
"kwin"."Suspend Compositing" = "Alt+Shift+F12";
"kwin"."Switch One Desktop Down" = "Meta+Ctrl+Down";
"kwin"."Switch One Desktop Up" = "Meta+Ctrl+Up";
"kwin"."Switch One Desktop to the Left" = "Meta+Ctrl+Left";
"kwin"."Switch One Desktop to the Right" = "Meta+Ctrl+Right";
"kwin"."Switch Window Down" = "Meta+Down";
"kwin"."Switch Window Left" = "Meta+Left";
"kwin"."Switch Window Right" = "Meta+Right";
"kwin"."Switch Window Up" = "Meta+Up";
"kwin"."Switch to Desktop 1" = "Meta+5";
"kwin"."Switch to Desktop 10" = [ ];
"kwin"."Switch to Desktop 11" = [ ];
"kwin"."Switch to Desktop 12" = [ ];
"kwin"."Switch to Desktop 13" = [ ];
"kwin"."Switch to Desktop 14" = [ ];
"kwin"."Switch to Desktop 15" = [ ];
"kwin"."Switch to Desktop 16" = [ ];
"kwin"."Switch to Desktop 17" = [ ];
"kwin"."Switch to Desktop 18" = [ ];
"kwin"."Switch to Desktop 19" = [ ];
"kwin"."Switch to Desktop 2" = "Meta+6";
"kwin"."Switch to Desktop 20" = [ ];
"kwin"."Switch to Desktop 3" = "Meta+7";
"kwin"."Switch to Desktop 4" = "Meta+8";
"kwin"."Switch to Desktop 5" = "Meta+9";
"kwin"."Switch to Desktop 6" = "Meta+0";
"kwin"."Switch to Desktop 7" = [ ];
"kwin"."Switch to Desktop 8" = [ ];
"kwin"."Switch to Desktop 9" = [ ];
"kwin"."Switch to Next Desktop" = [ ];
"kwin"."Switch to Next Screen" = [ ];
"kwin"."Switch to Previous Desktop" = [ ];
"kwin"."Switch to Previous Screen" = [ ];
"kwin"."Switch to Screen 0" = [ ];
"kwin"."Switch to Screen 1" = [ ];
"kwin"."Switch to Screen 2" = [ ];
"kwin"."Switch to Screen 3" = [ ];
"kwin"."Switch to Screen 4" = [ ];
"kwin"."Switch to Screen 5" = [ ];
"kwin"."Switch to Screen 6" = [ ];
"kwin"."Switch to Screen 7" = [ ];
"kwin"."Switch to Screen Above" = [ ];
"kwin"."Switch to Screen Below" = [ ];
"kwin"."Switch to Screen to the Left" = [ ];
"kwin"."Switch to Screen to the Right" = [ ];
"kwin"."Toggle Night Color" = [ ];
"kwin"."Toggle Window Raise/Lower" = [ ];
"kwin"."Walk Through Windows" = "Alt+Tab";
"kwin"."Walk Through Windows (Reverse)" = "Alt+Shift+Tab";
"kwin"."Walk Through Windows Alternative" = [ ];
"kwin"."Walk Through Windows Alternative (Reverse)" = [ ];
"kwin"."Walk Through Windows of Current Application" = "Alt+`";
"kwin"."Walk Through Windows of Current Application (Reverse)" = "Alt+~";
"kwin"."Walk Through Windows of Current Application Alternative" = [ ];
"kwin"."Walk Through Windows of Current Application Alternative (Reverse)" = [ ];
"kwin"."Window Above Other Windows" = [ ];
"kwin"."Window Below Other Windows" = [ ];
"kwin"."Window Close" = ["Alt+F4" "Meta+W"];
"kwin"."Window Fullscreen" = [ ];
"kwin"."Window Grow Horizontal" = [ ];
"kwin"."Window Grow Vertical" = [ ];
"kwin"."Window Lower" = [ ];
"kwin"."Window Maximize" = "Meta+PgUp";
"kwin"."Window Maximize Horizontal" = [ ];
"kwin"."Window Maximize Vertical" = [ ];
"kwin"."Window Minimize" = "Meta+PgDown";
"kwin"."Window Move" = [ ];
"kwin"."Window Move Center" = [ ];
"kwin"."Window No Border" = [ ];
"kwin"."Window On All Desktops" = [ ];
"kwin"."Window One Desktop Down" = "Meta+Ctrl+Shift+Down";
"kwin"."Window One Desktop Up" = "Meta+Ctrl+Shift+Up";
"kwin"."Window One Desktop to the Left" = "Meta+Ctrl+Shift+Left";
"kwin"."Window One Desktop to the Right" = "Meta+Ctrl+Shift+Right";
"kwin"."Window One Screen Down" = [ ];
"kwin"."Window One Screen Up" = [ ];
"kwin"."Window One Screen to the Left" = [ ];
"kwin"."Window One Screen to the Right" = [ ];
"kwin"."Window Operations Menu" = "Alt+F3";
"kwin"."Window Pack Down" = [ ];
"kwin"."Window Pack Left" = [ ];
"kwin"."Window Pack Right" = [ ];
"kwin"."Window Pack Up" = [ ];
"kwin"."Window Quick Tile Bottom" = [ ];
"kwin"."Window Quick Tile Bottom Left" = [ ];
"kwin"."Window Quick Tile Bottom Right" = [ ];
"kwin"."Window Quick Tile Left" = [ ];
"kwin"."Window Quick Tile Right" = [ ];
"kwin"."Window Quick Tile Top" = [ ];
"kwin"."Window Quick Tile Top Left" = [ ];
"kwin"."Window Quick Tile Top Right" = [ ];
"kwin"."Window Raise" = [ ];
"kwin"."Window Resize" = [ ];
"kwin"."Window Shade" = [ ];
"kwin"."Window Shrink Horizontal" = [ ];
"kwin"."Window Shrink Vertical" = [ ];
"kwin"."Window to Desktop 1" = "Meta+%";
"kwin"."Window to Desktop 10" = [ ];
"kwin"."Window to Desktop 11" = [ ];
"kwin"."Window to Desktop 12" = [ ];
"kwin"."Window to Desktop 13" = [ ];
"kwin"."Window to Desktop 14" = [ ];
"kwin"."Window to Desktop 15" = [ ];
"kwin"."Window to Desktop 16" = [ ];
"kwin"."Window to Desktop 17" = [ ];
"kwin"."Window to Desktop 18" = [ ];
"kwin"."Window to Desktop 19" = [ ];
"kwin"."Window to Desktop 2" = "Meta+^";
"kwin"."Window to Desktop 20" = [ ];
"kwin"."Window to Desktop 3" = "Meta+&";
"kwin"."Window to Desktop 4" = "Meta+*";
"kwin"."Window to Desktop 5" = "Meta+(";
"kwin"."Window to Desktop 6" = "Meta+)";
"kwin"."Window to Desktop 7" = [ ];
"kwin"."Window to Desktop 8" = [ ];
"kwin"."Window to Desktop 9" = [ ];
"kwin"."Window to Next Desktop" = [ ];
"kwin"."Window to Next Screen" = [ ];
"kwin"."Window to Previous Desktop" = [ ];
"kwin"."Window to Previous Screen" = [ ];
"kwin"."Window to Screen 0" = [ ];
"kwin"."Window to Screen 1" = [ ];
"kwin"."Window to Screen 2" = [ ];
"kwin"."Window to Screen 3" = [ ];
"kwin"."Window to Screen 4" = [ ];
"kwin"."Window to Screen 5" = [ ];
"kwin"."Window to Screen 6" = [ ];
"kwin"."Window to Screen 7" = [ ];
"kwin"."view_actual_size" = [ ];
"kwin"."view_zoom_in" = ["Meta++" "Meta+="];
"kwin"."view_zoom_out" = "Meta+-";
"mediacontrol"."mediavolumedown" = [ ];
"mediacontrol"."mediavolumeup" = [ ];
"mediacontrol"."nextmedia" = "Media Next";
"mediacontrol"."pausemedia" = "Media Pause";
"mediacontrol"."playmedia" = [ ];
"mediacontrol"."playpausemedia" = "Media Play";
"mediacontrol"."previousmedia" = "Media Previous";
"mediacontrol"."stopmedia" = "Media Stop";
"org_kde_powerdevil"."Decrease Keyboard Brightness" = "Keyboard Brightness Down";
"org_kde_powerdevil"."Decrease Screen Brightness" = "Monitor Brightness Down";
"org_kde_powerdevil"."Decrease Screen Brightness Small" = "Shift+Monitor Brightness Down";
"org_kde_powerdevil"."Hibernate" = "Hibernate";
"org_kde_powerdevil"."Increase Keyboard Brightness" = "Keyboard Brightness Up";
"org_kde_powerdevil"."Increase Screen Brightness" = "Monitor Brightness Up";
"org_kde_powerdevil"."Increase Screen Brightness Small" = "Shift+Monitor Brightness Up";
"org_kde_powerdevil"."PowerDown" = "Power Down";
"org_kde_powerdevil"."PowerOff" = "Power Off";
"org_kde_powerdevil"."Sleep" = "Sleep";
"org_kde_powerdevil"."Toggle Keyboard Backlight" = "Keyboard Light On/Off";
"org_kde_powerdevil"."Turn Off Screen" = [ ];
"org_kde_powerdevil"."powerProfile" = ["Battery" "Meta+B"];
"plasmashell"."activate task manager entry 1" = "Meta+1";
"plasmashell"."activate task manager entry 10" = [ ];
"plasmashell"."activate task manager entry 2" = "Meta+2";
"plasmashell"."activate task manager entry 3" = "Meta+3";
"plasmashell"."activate task manager entry 4" = "Meta+4";
"plasmashell"."activate task manager entry 5" = [ ];
"plasmashell"."activate task manager entry 6" = [ ];
"plasmashell"."activate task manager entry 7" = [ ];
"plasmashell"."activate task manager entry 8" = [ ];
"plasmashell"."activate task manager entry 9" = [ ];
"plasmashell"."clear-history" = [ ];
"plasmashell"."clipboard_action" = "Meta+Ctrl+X";
"plasmashell"."cycle-panels" = "Meta+Alt+P";
"plasmashell"."cycleNextAction" = [ ];
"plasmashell"."cyclePrevAction" = [ ];
"plasmashell"."manage activities" = "Meta+Q";
"plasmashell"."next activity" = "Meta+A";
"plasmashell"."previous activity" = "Meta+Shift+A";
"plasmashell"."repeat_action" = [ ];
"plasmashell"."show dashboard" = "Ctrl+F12";
"plasmashell"."show-barcode" = [ ];
"plasmashell"."show-on-mouse-pos" = "Meta+V";
"plasmashell"."stop current activity" = "Meta+S";
"plasmashell"."switch to next activity" = [ ];
"plasmashell"."switch to previous activity" = [ ];
"plasmashell"."toggle do not disturb" = [ ];
"services/firefox.desktop"."_launch" = "Meta+F";
"services/firefox.desktop"."new-private-window" = "Meta+Shift+F";
"services/org.wezfurlong.wezterm.desktop"."_launch" = "Meta+Return";
programs.plasma = {
enable = true;
shortcuts = {
"ActivityManager"."switch-to-activity-4c4b4e59-b0da-4a45-b9cc-729233bb1e9a" = [];
"KDE Keyboard Layout Switcher"."Switch keyboard layout to English (US)" = [];
"KDE Keyboard Layout Switcher"."Switch keyboard layout to English (Workman)" = [];
"KDE Keyboard Layout Switcher"."Switch to Last-Used Keyboard Layout" = "Meta+Alt+L";
"KDE Keyboard Layout Switcher"."Switch to Next Keyboard Layout" = "Meta+Alt+K";
"kaccess"."Toggle Screen Reader On and Off" = "Meta+Alt+S";
"kcm_touchpad"."Disable Touchpad" = "Touchpad Off";
"kcm_touchpad"."Enable Touchpad" = "Touchpad On";
"kcm_touchpad"."Toggle Touchpad" = ["Meta+Shift+Space" "Touchpad Toggle" "Meta+Ctrl+Zenkaku Hankaku"];
"kmix"."decrease_microphone_volume" = "Microphone Volume Down";
"kmix"."decrease_volume" = "Volume Down";
"kmix"."decrease_volume_small" = "Shift+Volume Down";
"kmix"."increase_microphone_volume" = "Microphone Volume Up";
"kmix"."increase_volume" = "Volume Up";
"kmix"."increase_volume_small" = "Shift+Volume Up";
"kmix"."mic_mute" = ["Microphone Mute" "Meta+Volume Mute"];
"kmix"."mute" = "Volume Mute";
"ksmserver"."Halt Without Confirmation" = [];
"ksmserver"."Lock Session" = ["Meta+L" "Screensaver"];
"ksmserver"."Log Out" = "Ctrl+Alt+Del";
"ksmserver"."Log Out Without Confirmation" = [];
"ksmserver"."Reboot" = [];
"ksmserver"."Reboot Without Confirmation" = [];
"ksmserver"."Shut Down" = [];
"kwin"."Activate Window Demanding Attention" = "Meta+Ctrl+A";
"kwin"."Cycle Overview" = [];
"kwin"."Cycle Overview Opposite" = [];
"kwin"."Decrease Opacity" = [];
"kwin"."Edit Tiles" = "Meta+T";
"kwin"."Expose" = "Ctrl+F9";
"kwin"."ExposeAll" = ["Ctrl+F10" "Launch (C)"];
"kwin"."ExposeClass" = "Ctrl+F7";
"kwin"."ExposeClassCurrentDesktop" = [];
"kwin"."Grid View" = [];
"kwin"."Increase Opacity" = [];
"kwin"."Kill Window" = "Meta+Ctrl+Esc";
"kwin"."Move Tablet to Next Output" = [];
"kwin"."MoveMouseToCenter" = "Meta+F6";
"kwin"."MoveMouseToFocus" = "Meta+F5";
"kwin"."MoveZoomDown" = [];
"kwin"."MoveZoomLeft" = [];
"kwin"."MoveZoomRight" = [];
"kwin"."MoveZoomUp" = [];
"kwin"."Overview" = [];
"kwin"."Setup Window Shortcut" = [];
"kwin"."Show Desktop" = "Meta+D";
"kwin"."Suspend Compositing" = "Alt+Shift+F12";
"kwin"."Switch One Desktop Down" = "Meta+Ctrl+Down";
"kwin"."Switch One Desktop Up" = "Meta+Ctrl+Up";
"kwin"."Switch One Desktop to the Left" = "Meta+Ctrl+Left";
"kwin"."Switch One Desktop to the Right" = "Meta+Ctrl+Right";
"kwin"."Switch Window Down" = "Meta+Down";
"kwin"."Switch Window Left" = "Meta+Left";
"kwin"."Switch Window Right" = "Meta+Right";
"kwin"."Switch Window Up" = "Meta+Up";
"kwin"."Switch to Desktop 1" = "Meta+5";
"kwin"."Switch to Desktop 10" = [];
"kwin"."Switch to Desktop 11" = [];
"kwin"."Switch to Desktop 12" = [];
"kwin"."Switch to Desktop 13" = [];
"kwin"."Switch to Desktop 14" = [];
"kwin"."Switch to Desktop 15" = [];
"kwin"."Switch to Desktop 16" = [];
"kwin"."Switch to Desktop 17" = [];
"kwin"."Switch to Desktop 18" = [];
"kwin"."Switch to Desktop 19" = [];
"kwin"."Switch to Desktop 2" = "Meta+6";
"kwin"."Switch to Desktop 20" = [];
"kwin"."Switch to Desktop 3" = "Meta+7";
"kwin"."Switch to Desktop 4" = "Meta+8";
"kwin"."Switch to Desktop 5" = "Meta+9";
"kwin"."Switch to Desktop 6" = "Meta+0";
"kwin"."Switch to Desktop 7" = [];
"kwin"."Switch to Desktop 8" = [];
"kwin"."Switch to Desktop 9" = [];
"kwin"."Switch to Next Desktop" = [];
"kwin"."Switch to Next Screen" = [];
"kwin"."Switch to Previous Desktop" = [];
"kwin"."Switch to Previous Screen" = [];
"kwin"."Switch to Screen 0" = [];
"kwin"."Switch to Screen 1" = [];
"kwin"."Switch to Screen 2" = [];
"kwin"."Switch to Screen 3" = [];
"kwin"."Switch to Screen 4" = [];
"kwin"."Switch to Screen 5" = [];
"kwin"."Switch to Screen 6" = [];
"kwin"."Switch to Screen 7" = [];
"kwin"."Switch to Screen Above" = [];
"kwin"."Switch to Screen Below" = [];
"kwin"."Switch to Screen to the Left" = [];
"kwin"."Switch to Screen to the Right" = [];
"kwin"."Toggle Night Color" = [];
"kwin"."Toggle Window Raise/Lower" = [];
"kwin"."Walk Through Windows" = "Alt+Tab";
"kwin"."Walk Through Windows (Reverse)" = "Alt+Shift+Tab";
"kwin"."Walk Through Windows Alternative" = [];
"kwin"."Walk Through Windows Alternative (Reverse)" = [];
"kwin"."Walk Through Windows of Current Application" = "Alt+`";
"kwin"."Walk Through Windows of Current Application (Reverse)" = "Alt+~";
"kwin"."Walk Through Windows of Current Application Alternative" = [];
"kwin"."Walk Through Windows of Current Application Alternative (Reverse)" = [];
"kwin"."Window Above Other Windows" = [];
"kwin"."Window Below Other Windows" = [];
"kwin"."Window Close" = ["Alt+F4" "Meta+W"];
"kwin"."Window Fullscreen" = [];
"kwin"."Window Grow Horizontal" = [];
"kwin"."Window Grow Vertical" = [];
"kwin"."Window Lower" = [];
"kwin"."Window Maximize" = "Meta+PgUp";
"kwin"."Window Maximize Horizontal" = [];
"kwin"."Window Maximize Vertical" = [];
"kwin"."Window Minimize" = "Meta+PgDown";
"kwin"."Window Move" = [];
"kwin"."Window Move Center" = [];
"kwin"."Window No Border" = [];
"kwin"."Window On All Desktops" = [];
"kwin"."Window One Desktop Down" = "Meta+Ctrl+Shift+Down";
"kwin"."Window One Desktop Up" = "Meta+Ctrl+Shift+Up";
"kwin"."Window One Desktop to the Left" = "Meta+Ctrl+Shift+Left";
"kwin"."Window One Desktop to the Right" = "Meta+Ctrl+Shift+Right";
"kwin"."Window One Screen Down" = [];
"kwin"."Window One Screen Up" = [];
"kwin"."Window One Screen to the Left" = [];
"kwin"."Window One Screen to the Right" = [];
"kwin"."Window Operations Menu" = "Alt+F3";
"kwin"."Window Pack Down" = [];
"kwin"."Window Pack Left" = [];
"kwin"."Window Pack Right" = [];
"kwin"."Window Pack Up" = [];
"kwin"."Window Quick Tile Bottom" = [];
"kwin"."Window Quick Tile Bottom Left" = [];
"kwin"."Window Quick Tile Bottom Right" = [];
"kwin"."Window Quick Tile Left" = [];
"kwin"."Window Quick Tile Right" = [];
"kwin"."Window Quick Tile Top" = [];
"kwin"."Window Quick Tile Top Left" = [];
"kwin"."Window Quick Tile Top Right" = [];
"kwin"."Window Raise" = [];
"kwin"."Window Resize" = [];
"kwin"."Window Shade" = [];
"kwin"."Window Shrink Horizontal" = [];
"kwin"."Window Shrink Vertical" = [];
"kwin"."Window to Desktop 1" = "Meta+%";
"kwin"."Window to Desktop 10" = [];
"kwin"."Window to Desktop 11" = [];
"kwin"."Window to Desktop 12" = [];
"kwin"."Window to Desktop 13" = [];
"kwin"."Window to Desktop 14" = [];
"kwin"."Window to Desktop 15" = [];
"kwin"."Window to Desktop 16" = [];
"kwin"."Window to Desktop 17" = [];
"kwin"."Window to Desktop 18" = [];
"kwin"."Window to Desktop 19" = [];
"kwin"."Window to Desktop 2" = "Meta+^";
"kwin"."Window to Desktop 20" = [];
"kwin"."Window to Desktop 3" = "Meta+&";
"kwin"."Window to Desktop 4" = "Meta+*";
"kwin"."Window to Desktop 5" = "Meta+(";
"kwin"."Window to Desktop 6" = "Meta+)";
"kwin"."Window to Desktop 7" = [];
"kwin"."Window to Desktop 8" = [];
"kwin"."Window to Desktop 9" = [];
"kwin"."Window to Next Desktop" = [];
"kwin"."Window to Next Screen" = [];
"kwin"."Window to Previous Desktop" = [];
"kwin"."Window to Previous Screen" = [];
"kwin"."Window to Screen 0" = [];
"kwin"."Window to Screen 1" = [];
"kwin"."Window to Screen 2" = [];
"kwin"."Window to Screen 3" = [];
"kwin"."Window to Screen 4" = [];
"kwin"."Window to Screen 5" = [];
"kwin"."Window to Screen 6" = [];
"kwin"."Window to Screen 7" = [];
"kwin"."view_actual_size" = [];
"kwin"."view_zoom_in" = ["Meta++" "Meta+="];
"kwin"."view_zoom_out" = "Meta+-";
"mediacontrol"."mediavolumedown" = [];
"mediacontrol"."mediavolumeup" = [];
"mediacontrol"."nextmedia" = "Media Next";
"mediacontrol"."pausemedia" = "Media Pause";
"mediacontrol"."playmedia" = [];
"mediacontrol"."playpausemedia" = "Media Play";
"mediacontrol"."previousmedia" = "Media Previous";
"mediacontrol"."stopmedia" = "Media Stop";
"org_kde_powerdevil"."Decrease Keyboard Brightness" = "Keyboard Brightness Down";
"org_kde_powerdevil"."Decrease Screen Brightness" = "Monitor Brightness Down";
"org_kde_powerdevil"."Decrease Screen Brightness Small" = "Shift+Monitor Brightness Down";
"org_kde_powerdevil"."Hibernate" = "Hibernate";
"org_kde_powerdevil"."Increase Keyboard Brightness" = "Keyboard Brightness Up";
"org_kde_powerdevil"."Increase Screen Brightness" = "Monitor Brightness Up";
"org_kde_powerdevil"."Increase Screen Brightness Small" = "Shift+Monitor Brightness Up";
"org_kde_powerdevil"."PowerDown" = "Power Down";
"org_kde_powerdevil"."PowerOff" = "Power Off";
"org_kde_powerdevil"."Sleep" = "Sleep";
"org_kde_powerdevil"."Toggle Keyboard Backlight" = "Keyboard Light On/Off";
"org_kde_powerdevil"."Turn Off Screen" = [];
"org_kde_powerdevil"."powerProfile" = ["Battery" "Meta+B"];
"plasmashell"."activate task manager entry 1" = "Meta+1";
"plasmashell"."activate task manager entry 10" = [];
"plasmashell"."activate task manager entry 2" = "Meta+2";
"plasmashell"."activate task manager entry 3" = "Meta+3";
"plasmashell"."activate task manager entry 4" = "Meta+4";
"plasmashell"."activate task manager entry 5" = [];
"plasmashell"."activate task manager entry 6" = [];
"plasmashell"."activate task manager entry 7" = [];
"plasmashell"."activate task manager entry 8" = [];
"plasmashell"."activate task manager entry 9" = [];
"plasmashell"."clear-history" = [];
"plasmashell"."clipboard_action" = "Meta+Ctrl+X";
"plasmashell"."cycle-panels" = "Meta+Alt+P";
"plasmashell"."cycleNextAction" = [];
"plasmashell"."cyclePrevAction" = [];
"plasmashell"."manage activities" = "Meta+Q";
"plasmashell"."next activity" = "Meta+A";
"plasmashell"."previous activity" = "Meta+Shift+A";
"plasmashell"."repeat_action" = [];
"plasmashell"."show dashboard" = "Ctrl+F12";
"plasmashell"."show-barcode" = [];
"plasmashell"."show-on-mouse-pos" = "Meta+V";
"plasmashell"."stop current activity" = "Meta+S";
"plasmashell"."switch to next activity" = [];
"plasmashell"."switch to previous activity" = [];
"plasmashell"."toggle do not disturb" = [];
"services/firefox.desktop"."_launch" = "Meta+F";
"services/firefox.desktop"."new-private-window" = "Meta+Shift+F";
"services/org.wezfurlong.wezterm.desktop"."_launch" = "Meta+Return";
};
configFile = {
"baloofilerc"."Basic Settings"."Indexing-Enabled".value = false;
"baloofilerc"."General"."dbVersion".value = 2;
"baloofilerc"."General"."exclude filters".value = "*~,*.part,*.o,*.la,*.lo,*.loT,*.moc,moc_*.cpp,qrc_*.cpp,ui_*.h,cmake_install.cmake,CMakeCache.txt,CTestTestfile.cmake,libtool,config.status,confdefs.h,autom4te,conftest,confstat,Makefile.am,*.gcode,.ninja_deps,.ninja_log,build.ninja,*.csproj,*.m4,*.rej,*.gmo,*.pc,*.omf,*.aux,*.tmp,*.po,*.vm*,*.nvram,*.rcore,*.swp,*.swap,lzo,litmain.sh,*.orig,.histfile.*,.xsession-errors*,*.map,*.so,*.a,*.db,*.qrc,*.ini,*.init,*.img,*.vdi,*.vbox*,vbox.log,*.qcow2,*.vmdk,*.vhd,*.vhdx,*.sql,*.sql.gz,*.ytdl,*.tfstate*,*.class,*.pyc,*.pyo,*.elc,*.qmlc,*.jsc,*.fastq,*.fq,*.gb,*.fasta,*.fna,*.gbff,*.faa,po,CVS,.svn,.git,_darcs,.bzr,.hg,CMakeFiles,CMakeTmp,CMakeTmpQmake,.moc,.obj,.pch,.uic,.npm,.yarn,.yarn-cache,__pycache__,node_modules,node_packages,nbproject,.terraform,.venv,venv,core-dumps,lost+found";
"baloofilerc"."General"."exclude filters version".value = 9;
"dolphinrc"."IconsMode"."PreviewSize".value = 96;
"dolphinrc"."KFileDialog Settings"."Places Icons Auto-resize".value = false;
"dolphinrc"."KFileDialog Settings"."Places Icons Static Size".value = 22;
"kactivitymanagerdrc"."activities"."4c4b4e59-b0da-4a45-b9cc-729233bb1e9a".value = "Default";
"kactivitymanagerdrc"."main"."currentActivity".value = "4c4b4e59-b0da-4a45-b9cc-729233bb1e9a";
"kcminputrc"."Libinput/12972/18/Framework Laptop 16 Keyboard Module - ANSI Consumer Control"."Enabled".value = true;
"kcminputrc"."Libinput/2362/628/PIXA3854:00 093A:0274 Mouse"."Enabled".value = false;
"kcminputrc"."Libinput/2362/628/PIXA3854:00 093A:0274 Mouse"."PointerAccelerationProfile".value = 1;
"kcminputrc"."Libinput/2362/628/PIXA3854:00 093A:0274 Touchpad"."ClickMethod".value = 2;
"kcminputrc"."Libinput/2362/628/PIXA3854:00 093A:0274 Touchpad"."DisableWhileTyping".value = true;
"kcminputrc"."Libinput/2362/628/PIXA3854:00 093A:0274 Touchpad"."Enabled".value = true;
"kcminputrc"."Libinput/2362/628/PIXA3854:00 093A:0274 Touchpad"."NaturalScroll".value = true;
"kcminputrc"."Libinput/2362/628/PIXA3854:00 093A:0274 Touchpad"."PointerAcceleration".value = 1.000;
"kcminputrc"."Libinput/2362/628/PIXA3854:00 093A:0274 Touchpad"."PointerAccelerationProfile".value = 1;
"kcminputrc"."Libinput/2362/628/PIXA3854:00 093A:0274 Touchpad"."ScrollFactor".value = 0.1;
"kcminputrc"."Libinput/2362/628/PIXA3854:00 093A:0274 Touchpad"."TapDragLock".value = false;
"kcminputrc"."Libinput/5426/123/Razer Razer Viper Ultimate Dongle"."PointerAccelerationProfile".value = 1;
"kcminputrc"."Mouse"."X11LibInputXAccelProfileFlat".value = true;
"kded5rc"."Module-browserintegrationreminder"."autoload".value = false;
"kded5rc"."Module-device_automounter"."autoload".value = false;
"kdeglobals"."DirSelect Dialog"."DirSelectDialog Size".value = "884,584";
"kdeglobals"."KFileDialog Settings"."Allow Expansion".value = false;
"kdeglobals"."KFileDialog Settings"."Automatically select filename extension".value = true;
"kdeglobals"."KFileDialog Settings"."Breadcrumb Navigation".value = true;
"kdeglobals"."KFileDialog Settings"."Decoration position".value = 2;
"kdeglobals"."KFileDialog Settings"."LocationCombo Completionmode".value = 5;
"kdeglobals"."KFileDialog Settings"."PathCombo Completionmode".value = 5;
"kdeglobals"."KFileDialog Settings"."Show Bookmarks".value = false;
"kdeglobals"."KFileDialog Settings"."Show Full Path".value = false;
"kdeglobals"."KFileDialog Settings"."Show Inline Previews".value = true;
"kdeglobals"."KFileDialog Settings"."Show Preview".value = false;
"kdeglobals"."KFileDialog Settings"."Show Speedbar".value = true;
"kdeglobals"."KFileDialog Settings"."Show hidden files".value = true;
"kdeglobals"."KFileDialog Settings"."Sort by".value = "Name";
"kdeglobals"."KFileDialog Settings"."Sort directories first".value = true;
"kdeglobals"."KFileDialog Settings"."Sort hidden files last".value = false;
"kdeglobals"."KFileDialog Settings"."Sort reversed".value = false;
"kdeglobals"."KFileDialog Settings"."Speedbar Width".value = 138;
"kdeglobals"."KFileDialog Settings"."View Style".value = "DetailTree";
"kdeglobals"."WM"."activeBackground".value = "49,54,59";
"kdeglobals"."WM"."activeBlend".value = "252,252,252";
"kdeglobals"."WM"."activeForeground".value = "252,252,252";
"kdeglobals"."WM"."inactiveBackground".value = "42,46,50";
"kdeglobals"."WM"."inactiveBlend".value = "161,169,177";
"kdeglobals"."WM"."inactiveForeground".value = "161,169,177";
"kglobalshortcutsrc"."ActivityManager"."_k_friendly_name".value = "Activity Manager";
"kglobalshortcutsrc"."KDE Keyboard Layout Switcher"."_k_friendly_name".value = "Keyboard Layout Switcher";
"kglobalshortcutsrc"."kaccess"."_k_friendly_name".value = "Accessibility";
"kglobalshortcutsrc"."kcm_touchpad"."_k_friendly_name".value = "Touchpad";
"kglobalshortcutsrc"."kmix"."_k_friendly_name".value = "Audio Volume";
"kglobalshortcutsrc"."ksmserver"."_k_friendly_name".value = "Session Management";
"kglobalshortcutsrc"."kwin"."_k_friendly_name".value = "KWin";
"kglobalshortcutsrc"."mediacontrol"."_k_friendly_name".value = "Media Controller";
"kglobalshortcutsrc"."org_kde_powerdevil"."_k_friendly_name".value = "KDE Power Management System";
"kglobalshortcutsrc"."plasmashell"."_k_friendly_name".value = "plasmashell";
"kiorc"."Confirmations"."ConfirmDelete".value = true;
"krunnerrc"."Plugins"."baloosearchEnabled".value = false;
"ksmserverrc"."General"."loginMode".value = "restoreSavedSession";
"kwalletrc"."Wallet"."First Use".value = false;
"kwinrc"."Desktops"."Id_1".value = "925ef4df-45a9-4cdc-a29f-0f6a17a59588";
"kwinrc"."Desktops"."Id_2".value = "04cca492-9c1d-4df0-b285-13986a1b84c5";
"kwinrc"."Desktops"."Id_3".value = "621ff3ad-7b86-46d3-98a9-443cafa07506";
"kwinrc"."Desktops"."Id_4".value = "d1845a81-9dba-4e59-848d-c4e3b7ffecfd";
"kwinrc"."Desktops"."Id_5".value = "067b338c-a332-4f57-afdd-2d15cc464039";
"kwinrc"."Desktops"."Id_6".value = "d1f16ccc-bf0b-4cb4-9275-456a6d2a92ef";
"kwinrc"."Desktops"."Number".value = 6;
"kwinrc"."Desktops"."Rows".value = 1;
"kwinrc"."Effect-translucency"."Inactive".value = 90;
"kwinrc"."Plugins"."translucencyEnabled".value = true;
"kwinrc"."Plugins"."wobblywindowsEnabled".value = true;
"kwinrc"."Tiling"."padding".value = 0;
"kwinrc"."Tiling/530b5b99-fb5c-526e-822b-a6ca66eb2461"."tiles".value = "{\"layoutDirection\":\"horizontal\",\"tiles\":[{\"width\":0.25},{\"width\":0.5},{\"width\":0.25}]}";
"kwinrc"."Tiling/7162cb98-d4d5-5d5d-9367-29e0f5b63060"."tiles".value = "{\"layoutDirection\":\"horizontal\",\"tiles\":[{\"width\":0.25},{\"width\":0.5},{\"width\":0.25}]}";
"kwinrc"."Tiling/7e0b89fb-bf08-5d5d-a334-0ecfa3cb7b04"."tiles".value = "{\"layoutDirection\":\"horizontal\",\"tiles\":[{\"width\":0.2520833333333333},{\"width\":0.7479166666666595}]}";
"kwinrc"."Tiling/b139d5e7-0994-57d9-b378-1e6f13020bc3"."tiles".value = "{\"layoutDirection\":\"horizontal\",\"tiles\":[{\"width\":0.45},{\"layoutDirection\":\"vertical\",\"tiles\":[{\"height\":0.5},{\"height\":0.5}],\"width\":0.55}]}";
"kwinrc"."Tiling/b4e8ebb4-a5b0-596a-b70d-9a1b27c4f05b"."tiles".value = "{\"layoutDirection\":\"horizontal\",\"tiles\":[{\"width\":0.3312500000000039},{\"width\":0.6687499999999946}]}";
"kwinrc"."Tiling/e23d0cc4-ba9f-5b08-9f6b-33b2434ca622"."tiles".value = "{\"layoutDirection\":\"horizontal\",\"tiles\":[{\"width\":0.25},{\"width\":0.5},{\"width\":0.25}]}";
"kwinrc"."Tiling/e688eb74-7230-5d02-a5e0-3b38a54bc04e"."tiles".value = "{\"layoutDirection\":\"horizontal\",\"tiles\":[{\"width\":0.25},{\"width\":0.5},{\"width\":0.25}]}";
"kwinrc"."Wayland"."InputMethod[$e]".value = "/run/current-system/sw/share/applications/org.fcitx.Fcitx5.desktop";
"kwinrc"."Windows"."AutoRaise".value = true;
"kwinrc"."Windows"."AutoRaiseInterval".value = 250;
"kwinrc"."Windows"."DelayFocusInterval".value = 200;
"kwinrc"."Windows"."FocusPolicy".value = "FocusFollowsMouse";
"kwinrc"."Xwayland"."Scale".value = 1;
"kwinrc"."org.kde.kdecoration2"."ButtonsOnLeft".value = "MFS";
"kwinrulesrc"."1"."Description".value = "Application settings for discord";
"kwinrulesrc"."1"."clientmachine".value = "localhost";
"kwinrulesrc"."1"."desktops".value = "\\0";
"kwinrulesrc"."1"."desktopsrule".value = 2;
"kwinrulesrc"."1"."size".value = "1420,969";
"kwinrulesrc"."1"."skippager".value = true;
"kwinrulesrc"."1"."skippagerrule".value = 2;
"kwinrulesrc"."1"."title".value = "#all-gay-circlejerk-club | Vensuli - Discord";
"kwinrulesrc"."1"."windowrole".value = "browser-window";
"kwinrulesrc"."1"."wmclass".value = "discord";
"kwinrulesrc"."1"."wmclassmatch".value = 1;
"kwinrulesrc"."2"."Description".value = "Application settings for org.wezfurlong.wezterm";
"kwinrulesrc"."2"."clientmachine".value = "localhost";
"kwinrulesrc"."2"."desktops".value = "\\0";
"kwinrulesrc"."2"."size".value = "1420,969";
"kwinrulesrc"."2"."sizerule".value = 3;
"kwinrulesrc"."2"."skippager".value = true;
"kwinrulesrc"."2"."wmclass".value = "wezterm-gui org.wezfurlong.wezterm";
"kwinrulesrc"."2"."wmclasscomplete".value = true;
"kwinrulesrc"."2"."wmclassmatch".value = 1;
"kwinrulesrc"."3"."Description".value = "Application settings for org.wezfurlong.wezterm";
"kwinrulesrc"."3"."size".value = "1420,969";
"kwinrulesrc"."3"."sizerule".value = 3;
"kwinrulesrc"."3"."wmclass".value = "wezterm-gui org.wezfurlong.wezterm";
"kwinrulesrc"."3"."wmclasscomplete".value = true;
"kwinrulesrc"."3"."wmclassmatch".value = 1;
"kwinrulesrc"."8d9e7fc8-749c-434f-a178-e92133fc9374"."Description".value = "Window settings for discord";
"kwinrulesrc"."8d9e7fc8-749c-434f-a178-e92133fc9374"."clientmachine".value = "localhost";
"kwinrulesrc"."8d9e7fc8-749c-434f-a178-e92133fc9374"."skippager".value = true;
"kwinrulesrc"."8d9e7fc8-749c-434f-a178-e92133fc9374"."skippagerrule".value = 3;
"kwinrulesrc"."8d9e7fc8-749c-434f-a178-e92133fc9374"."title".value = "#all-gay-circlejerk-club | Vensuli - Discord";
"kwinrulesrc"."8d9e7fc8-749c-434f-a178-e92133fc9374"."types".value = 1;
"kwinrulesrc"."8d9e7fc8-749c-434f-a178-e92133fc9374"."windowrole".value = "browser-window";
"kwinrulesrc"."8d9e7fc8-749c-434f-a178-e92133fc9374"."windowrolematch".value = 1;
"kwinrulesrc"."8d9e7fc8-749c-434f-a178-e92133fc9374"."wmclass".value = "discord";
"kwinrulesrc"."8d9e7fc8-749c-434f-a178-e92133fc9374"."wmclassmatch".value = 1;
"kwinrulesrc"."94b88066-bf8f-4089-8678-61be77391e5c"."Description".value = "Application settings for org.wezfurlong.wezterm";
"kwinrulesrc"."94b88066-bf8f-4089-8678-61be77391e5c"."size".value = "1420,969";
"kwinrulesrc"."94b88066-bf8f-4089-8678-61be77391e5c"."sizerule".value = 3;
"kwinrulesrc"."94b88066-bf8f-4089-8678-61be77391e5c"."wmclass".value = "wezterm-gui org.wezfurlong.wezterm";
"kwinrulesrc"."94b88066-bf8f-4089-8678-61be77391e5c"."wmclasscomplete".value = true;
"kwinrulesrc"."94b88066-bf8f-4089-8678-61be77391e5c"."wmclassmatch".value = 1;
"kwinrulesrc"."General"."count".value = 2;
"kwinrulesrc"."General"."rules".value = "1,2";
"kwinrulesrc"."eb7a8cbc-de66-4f33-b018-25f1c6bc80fc"."Description".value = "Application settings for discord";
"kwinrulesrc"."eb7a8cbc-de66-4f33-b018-25f1c6bc80fc"."clientmachine".value = "localhost";
"kwinrulesrc"."eb7a8cbc-de66-4f33-b018-25f1c6bc80fc"."desktops".value = "\\0";
"kwinrulesrc"."eb7a8cbc-de66-4f33-b018-25f1c6bc80fc"."desktopsrule".value = 2;
"kwinrulesrc"."eb7a8cbc-de66-4f33-b018-25f1c6bc80fc"."wmclass".value = "discord";
"kwinrulesrc"."eb7a8cbc-de66-4f33-b018-25f1c6bc80fc"."wmclassmatch".value = 1;
"kxkbrc"."Layout"."DisplayNames".value = "";
"kxkbrc"."Layout"."LayoutList".value = "us";
"kxkbrc"."Layout"."ResetOldOptions".value = true;
"kxkbrc"."Layout"."Use".value = true;
"kxkbrc"."Layout"."VariantList".value = "";
"plasma-localerc"."Formats"."LANG".value = "en_US.utf8";
"systemsettingsrc"."KFileDialog Settings"."detailViewIconSize".value = 16;
};
};
configFile = {
"baloofilerc"."Basic Settings"."Indexing-Enabled".value = false;
"baloofilerc"."General"."dbVersion".value = 2;
"baloofilerc"."General"."exclude filters".value = "*~,*.part,*.o,*.la,*.lo,*.loT,*.moc,moc_*.cpp,qrc_*.cpp,ui_*.h,cmake_install.cmake,CMakeCache.txt,CTestTestfile.cmake,libtool,config.status,confdefs.h,autom4te,conftest,confstat,Makefile.am,*.gcode,.ninja_deps,.ninja_log,build.ninja,*.csproj,*.m4,*.rej,*.gmo,*.pc,*.omf,*.aux,*.tmp,*.po,*.vm*,*.nvram,*.rcore,*.swp,*.swap,lzo,litmain.sh,*.orig,.histfile.*,.xsession-errors*,*.map,*.so,*.a,*.db,*.qrc,*.ini,*.init,*.img,*.vdi,*.vbox*,vbox.log,*.qcow2,*.vmdk,*.vhd,*.vhdx,*.sql,*.sql.gz,*.ytdl,*.tfstate*,*.class,*.pyc,*.pyo,*.elc,*.qmlc,*.jsc,*.fastq,*.fq,*.gb,*.fasta,*.fna,*.gbff,*.faa,po,CVS,.svn,.git,_darcs,.bzr,.hg,CMakeFiles,CMakeTmp,CMakeTmpQmake,.moc,.obj,.pch,.uic,.npm,.yarn,.yarn-cache,__pycache__,node_modules,node_packages,nbproject,.terraform,.venv,venv,core-dumps,lost+found";
"baloofilerc"."General"."exclude filters version".value = 9;
"dolphinrc"."IconsMode"."PreviewSize".value = 96;
"dolphinrc"."KFileDialog Settings"."Places Icons Auto-resize".value = false;
"dolphinrc"."KFileDialog Settings"."Places Icons Static Size".value = 22;
"kactivitymanagerdrc"."activities"."4c4b4e59-b0da-4a45-b9cc-729233bb1e9a".value = "Default";
"kactivitymanagerdrc"."main"."currentActivity".value = "4c4b4e59-b0da-4a45-b9cc-729233bb1e9a";
"kcminputrc"."Libinput/12972/18/Framework Laptop 16 Keyboard Module - ANSI Consumer Control"."Enabled".value = true;
"kcminputrc"."Libinput/2362/628/PIXA3854:00 093A:0274 Mouse"."Enabled".value = false;
"kcminputrc"."Libinput/2362/628/PIXA3854:00 093A:0274 Mouse"."PointerAccelerationProfile".value = 1;
"kcminputrc"."Libinput/2362/628/PIXA3854:00 093A:0274 Touchpad"."ClickMethod".value = 2;
"kcminputrc"."Libinput/2362/628/PIXA3854:00 093A:0274 Touchpad"."DisableWhileTyping".value = true;
"kcminputrc"."Libinput/2362/628/PIXA3854:00 093A:0274 Touchpad"."Enabled".value = true;
"kcminputrc"."Libinput/2362/628/PIXA3854:00 093A:0274 Touchpad"."NaturalScroll".value = true;
"kcminputrc"."Libinput/2362/628/PIXA3854:00 093A:0274 Touchpad"."PointerAcceleration".value = 1.000;
"kcminputrc"."Libinput/2362/628/PIXA3854:00 093A:0274 Touchpad"."PointerAccelerationProfile".value = 1;
"kcminputrc"."Libinput/2362/628/PIXA3854:00 093A:0274 Touchpad"."ScrollFactor".value = 0.1;
"kcminputrc"."Libinput/2362/628/PIXA3854:00 093A:0274 Touchpad"."TapDragLock".value = false;
"kcminputrc"."Libinput/5426/123/Razer Razer Viper Ultimate Dongle"."PointerAccelerationProfile".value = 1;
"kcminputrc"."Mouse"."X11LibInputXAccelProfileFlat".value = true;
"kded5rc"."Module-browserintegrationreminder"."autoload".value = false;
"kded5rc"."Module-device_automounter"."autoload".value = false;
"kdeglobals"."DirSelect Dialog"."DirSelectDialog Size".value = "884,584";
"kdeglobals"."KFileDialog Settings"."Allow Expansion".value = false;
"kdeglobals"."KFileDialog Settings"."Automatically select filename extension".value = true;
"kdeglobals"."KFileDialog Settings"."Breadcrumb Navigation".value = true;
"kdeglobals"."KFileDialog Settings"."Decoration position".value = 2;
"kdeglobals"."KFileDialog Settings"."LocationCombo Completionmode".value = 5;
"kdeglobals"."KFileDialog Settings"."PathCombo Completionmode".value = 5;
"kdeglobals"."KFileDialog Settings"."Show Bookmarks".value = false;
"kdeglobals"."KFileDialog Settings"."Show Full Path".value = false;
"kdeglobals"."KFileDialog Settings"."Show Inline Previews".value = true;
"kdeglobals"."KFileDialog Settings"."Show Preview".value = false;
"kdeglobals"."KFileDialog Settings"."Show Speedbar".value = true;
"kdeglobals"."KFileDialog Settings"."Show hidden files".value = true;
"kdeglobals"."KFileDialog Settings"."Sort by".value = "Name";
"kdeglobals"."KFileDialog Settings"."Sort directories first".value = true;
"kdeglobals"."KFileDialog Settings"."Sort hidden files last".value = false;
"kdeglobals"."KFileDialog Settings"."Sort reversed".value = false;
"kdeglobals"."KFileDialog Settings"."Speedbar Width".value = 138;
"kdeglobals"."KFileDialog Settings"."View Style".value = "DetailTree";
"kdeglobals"."WM"."activeBackground".value = "49,54,59";
"kdeglobals"."WM"."activeBlend".value = "252,252,252";
"kdeglobals"."WM"."activeForeground".value = "252,252,252";
"kdeglobals"."WM"."inactiveBackground".value = "42,46,50";
"kdeglobals"."WM"."inactiveBlend".value = "161,169,177";
"kdeglobals"."WM"."inactiveForeground".value = "161,169,177";
"kglobalshortcutsrc"."ActivityManager"."_k_friendly_name".value = "Activity Manager";
"kglobalshortcutsrc"."KDE Keyboard Layout Switcher"."_k_friendly_name".value = "Keyboard Layout Switcher";
"kglobalshortcutsrc"."kaccess"."_k_friendly_name".value = "Accessibility";
"kglobalshortcutsrc"."kcm_touchpad"."_k_friendly_name".value = "Touchpad";
"kglobalshortcutsrc"."kmix"."_k_friendly_name".value = "Audio Volume";
"kglobalshortcutsrc"."ksmserver"."_k_friendly_name".value = "Session Management";
"kglobalshortcutsrc"."kwin"."_k_friendly_name".value = "KWin";
"kglobalshortcutsrc"."mediacontrol"."_k_friendly_name".value = "Media Controller";
"kglobalshortcutsrc"."org_kde_powerdevil"."_k_friendly_name".value = "KDE Power Management System";
"kglobalshortcutsrc"."plasmashell"."_k_friendly_name".value = "plasmashell";
"kiorc"."Confirmations"."ConfirmDelete".value = true;
"krunnerrc"."Plugins"."baloosearchEnabled".value = false;
"ksmserverrc"."General"."loginMode".value = "restoreSavedSession";
"kwalletrc"."Wallet"."First Use".value = false;
"kwinrc"."Desktops"."Id_1".value = "925ef4df-45a9-4cdc-a29f-0f6a17a59588";
"kwinrc"."Desktops"."Id_2".value = "04cca492-9c1d-4df0-b285-13986a1b84c5";
"kwinrc"."Desktops"."Id_3".value = "621ff3ad-7b86-46d3-98a9-443cafa07506";
"kwinrc"."Desktops"."Id_4".value = "d1845a81-9dba-4e59-848d-c4e3b7ffecfd";
"kwinrc"."Desktops"."Id_5".value = "067b338c-a332-4f57-afdd-2d15cc464039";
"kwinrc"."Desktops"."Id_6".value = "d1f16ccc-bf0b-4cb4-9275-456a6d2a92ef";
"kwinrc"."Desktops"."Number".value = 6;
"kwinrc"."Desktops"."Rows".value = 1;
"kwinrc"."Effect-translucency"."Inactive".value = 90;
"kwinrc"."Plugins"."translucencyEnabled".value = true;
"kwinrc"."Plugins"."wobblywindowsEnabled".value = true;
"kwinrc"."Tiling"."padding".value = 0;
"kwinrc"."Tiling/530b5b99-fb5c-526e-822b-a6ca66eb2461"."tiles".value = "{\"layoutDirection\":\"horizontal\",\"tiles\":[{\"width\":0.25},{\"width\":0.5},{\"width\":0.25}]}";
"kwinrc"."Tiling/7162cb98-d4d5-5d5d-9367-29e0f5b63060"."tiles".value = "{\"layoutDirection\":\"horizontal\",\"tiles\":[{\"width\":0.25},{\"width\":0.5},{\"width\":0.25}]}";
"kwinrc"."Tiling/7e0b89fb-bf08-5d5d-a334-0ecfa3cb7b04"."tiles".value = "{\"layoutDirection\":\"horizontal\",\"tiles\":[{\"width\":0.2520833333333333},{\"width\":0.7479166666666595}]}";
"kwinrc"."Tiling/b139d5e7-0994-57d9-b378-1e6f13020bc3"."tiles".value = "{\"layoutDirection\":\"horizontal\",\"tiles\":[{\"width\":0.45},{\"layoutDirection\":\"vertical\",\"tiles\":[{\"height\":0.5},{\"height\":0.5}],\"width\":0.55}]}";
"kwinrc"."Tiling/b4e8ebb4-a5b0-596a-b70d-9a1b27c4f05b"."tiles".value = "{\"layoutDirection\":\"horizontal\",\"tiles\":[{\"width\":0.3312500000000039},{\"width\":0.6687499999999946}]}";
"kwinrc"."Tiling/e23d0cc4-ba9f-5b08-9f6b-33b2434ca622"."tiles".value = "{\"layoutDirection\":\"horizontal\",\"tiles\":[{\"width\":0.25},{\"width\":0.5},{\"width\":0.25}]}";
"kwinrc"."Tiling/e688eb74-7230-5d02-a5e0-3b38a54bc04e"."tiles".value = "{\"layoutDirection\":\"horizontal\",\"tiles\":[{\"width\":0.25},{\"width\":0.5},{\"width\":0.25}]}";
"kwinrc"."Wayland"."InputMethod[$e]".value = "/run/current-system/sw/share/applications/org.fcitx.Fcitx5.desktop";
"kwinrc"."Windows"."AutoRaise".value = true;
"kwinrc"."Windows"."AutoRaiseInterval".value = 250;
"kwinrc"."Windows"."DelayFocusInterval".value = 200;
"kwinrc"."Windows"."FocusPolicy".value = "FocusFollowsMouse";
"kwinrc"."Xwayland"."Scale".value = 1;
"kwinrc"."org.kde.kdecoration2"."ButtonsOnLeft".value = "MFS";
"kwinrulesrc"."1"."Description".value = "Application settings for discord";
"kwinrulesrc"."1"."clientmachine".value = "localhost";
"kwinrulesrc"."1"."desktops".value = "\\0";
"kwinrulesrc"."1"."desktopsrule".value = 2;
"kwinrulesrc"."1"."size".value = "1420,969";
"kwinrulesrc"."1"."skippager".value = true;
"kwinrulesrc"."1"."skippagerrule".value = 2;
"kwinrulesrc"."1"."title".value = "#all-gay-circlejerk-club | Vensuli - Discord";
"kwinrulesrc"."1"."windowrole".value = "browser-window";
"kwinrulesrc"."1"."wmclass".value = "discord";
"kwinrulesrc"."1"."wmclassmatch".value = 1;
"kwinrulesrc"."2"."Description".value = "Application settings for org.wezfurlong.wezterm";
"kwinrulesrc"."2"."clientmachine".value = "localhost";
"kwinrulesrc"."2"."desktops".value = "\\0";
"kwinrulesrc"."2"."size".value = "1420,969";
"kwinrulesrc"."2"."sizerule".value = 3;
"kwinrulesrc"."2"."skippager".value = true;
"kwinrulesrc"."2"."wmclass".value = "wezterm-gui org.wezfurlong.wezterm";
"kwinrulesrc"."2"."wmclasscomplete".value = true;
"kwinrulesrc"."2"."wmclassmatch".value = 1;
"kwinrulesrc"."3"."Description".value = "Application settings for org.wezfurlong.wezterm";
"kwinrulesrc"."3"."size".value = "1420,969";
"kwinrulesrc"."3"."sizerule".value = 3;
"kwinrulesrc"."3"."wmclass".value = "wezterm-gui org.wezfurlong.wezterm";
"kwinrulesrc"."3"."wmclasscomplete".value = true;
"kwinrulesrc"."3"."wmclassmatch".value = 1;
"kwinrulesrc"."8d9e7fc8-749c-434f-a178-e92133fc9374"."Description".value = "Window settings for discord";
"kwinrulesrc"."8d9e7fc8-749c-434f-a178-e92133fc9374"."clientmachine".value = "localhost";
"kwinrulesrc"."8d9e7fc8-749c-434f-a178-e92133fc9374"."skippager".value = true;
"kwinrulesrc"."8d9e7fc8-749c-434f-a178-e92133fc9374"."skippagerrule".value = 3;
"kwinrulesrc"."8d9e7fc8-749c-434f-a178-e92133fc9374"."title".value = "#all-gay-circlejerk-club | Vensuli - Discord";
"kwinrulesrc"."8d9e7fc8-749c-434f-a178-e92133fc9374"."types".value = 1;
"kwinrulesrc"."8d9e7fc8-749c-434f-a178-e92133fc9374"."windowrole".value = "browser-window";
"kwinrulesrc"."8d9e7fc8-749c-434f-a178-e92133fc9374"."windowrolematch".value = 1;
"kwinrulesrc"."8d9e7fc8-749c-434f-a178-e92133fc9374"."wmclass".value = "discord";
"kwinrulesrc"."8d9e7fc8-749c-434f-a178-e92133fc9374"."wmclassmatch".value = 1;
"kwinrulesrc"."94b88066-bf8f-4089-8678-61be77391e5c"."Description".value = "Application settings for org.wezfurlong.wezterm";
"kwinrulesrc"."94b88066-bf8f-4089-8678-61be77391e5c"."size".value = "1420,969";
"kwinrulesrc"."94b88066-bf8f-4089-8678-61be77391e5c"."sizerule".value = 3;
"kwinrulesrc"."94b88066-bf8f-4089-8678-61be77391e5c"."wmclass".value = "wezterm-gui org.wezfurlong.wezterm";
"kwinrulesrc"."94b88066-bf8f-4089-8678-61be77391e5c"."wmclasscomplete".value = true;
"kwinrulesrc"."94b88066-bf8f-4089-8678-61be77391e5c"."wmclassmatch".value = 1;
"kwinrulesrc"."General"."count".value = 2;
"kwinrulesrc"."General"."rules".value = "1,2";
"kwinrulesrc"."eb7a8cbc-de66-4f33-b018-25f1c6bc80fc"."Description".value = "Application settings for discord";
"kwinrulesrc"."eb7a8cbc-de66-4f33-b018-25f1c6bc80fc"."clientmachine".value = "localhost";
"kwinrulesrc"."eb7a8cbc-de66-4f33-b018-25f1c6bc80fc"."desktops".value = "\\0";
"kwinrulesrc"."eb7a8cbc-de66-4f33-b018-25f1c6bc80fc"."desktopsrule".value = 2;
"kwinrulesrc"."eb7a8cbc-de66-4f33-b018-25f1c6bc80fc"."wmclass".value = "discord";
"kwinrulesrc"."eb7a8cbc-de66-4f33-b018-25f1c6bc80fc"."wmclassmatch".value = 1;
"kxkbrc"."Layout"."DisplayNames".value = "";
"kxkbrc"."Layout"."LayoutList".value = "us";
"kxkbrc"."Layout"."ResetOldOptions".value = true;
"kxkbrc"."Layout"."Use".value = true;
"kxkbrc"."Layout"."VariantList".value = "";
"plasma-localerc"."Formats"."LANG".value = "en_US.utf8";
"systemsettingsrc"."KFileDialog Settings"."detailViewIconSize".value = 16;
};
};
}