mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-16 01:55:13 -05:00
feat: added hyprland, zed, and firefox settings
This commit is contained in:
parent
f642608281
commit
9526cf7ca4
21 changed files with 35 additions and 1 deletions
16
home/modules/cli/development/langauges/default.nix
Normal file
16
home/modules/cli/development/langauges/default.nix
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
{
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
{
|
||||||
|
home.packages = builtins.attrValues {
|
||||||
|
inherit (pkgs.elmPackages)
|
||||||
|
elm
|
||||||
|
elm-format
|
||||||
|
elm-land
|
||||||
|
elm-language-server
|
||||||
|
elm-review
|
||||||
|
elm-test
|
||||||
|
;
|
||||||
|
};
|
||||||
|
}
|
|
@ -4,7 +4,7 @@
|
||||||
"privacy.fingerprintingProtection" = true;
|
"privacy.fingerprintingProtection" = true;
|
||||||
|
|
||||||
# RFP (resistFingerprinting)
|
# RFP (resistFingerprinting)
|
||||||
"privacy.resistFingerprinting" = true;
|
"privacy.resistFingerprinting" = false;
|
||||||
"privacy.window.maxInnerWidth" = 1600;
|
"privacy.window.maxInnerWidth" = 1600;
|
||||||
"privacy.window.maxInnerHeight" = 900;
|
"privacy.window.maxInnerHeight" = 900;
|
||||||
"privacy.resistFingerprinting.block_mozAddonManager" = true;
|
"privacy.resistFingerprinting.block_mozAddonManager" = true;
|
||||||
|
|
|
@ -32,6 +32,8 @@ in
|
||||||
file_icons = true;
|
file_icons = true;
|
||||||
folder_icons = true;
|
folder_icons = true;
|
||||||
indent_size = 15;
|
indent_size = 15;
|
||||||
|
auto_reveal_entries = false;
|
||||||
|
auto_fold_dirs = false;
|
||||||
};
|
};
|
||||||
indent_guides = {
|
indent_guides = {
|
||||||
enabled = true;
|
enabled = true;
|
|
@ -12,6 +12,7 @@ let
|
||||||
save = "(.*Enter name of file to save to….*)";
|
save = "(.*Enter name of file to save to….*)";
|
||||||
picture = "(.*Picture-in-Picture.*)";
|
picture = "(.*Picture-in-Picture.*)";
|
||||||
discord-popout = "(.*Discord Popout.*)";
|
discord-popout = "(.*Discord Popout.*)";
|
||||||
|
upload = "(.*File Upload.*)";
|
||||||
signal = "(signal)";
|
signal = "(signal)";
|
||||||
vesktop = "(vesktop)";
|
vesktop = "(vesktop)";
|
||||||
code = "(code)";
|
code = "(code)";
|
||||||
|
@ -37,6 +38,8 @@ let
|
||||||
"maxsize 720 400, title:^${discord-popout}$"
|
"maxsize 720 400, title:^${discord-popout}$"
|
||||||
"maxsize 1280 720, title:^${battle}$"
|
"maxsize 1280 720, title:^${battle}$"
|
||||||
"minsize 1280 720, title:^${battle}$"
|
"minsize 1280 720, title:^${battle}$"
|
||||||
|
"maxsize 1280 720, title:^${upload}$"
|
||||||
|
"minsize 1280 720, title:^${upload}$"
|
||||||
];
|
];
|
||||||
|
|
||||||
floatWindows = builtins.map (x: "float, " + x) [
|
floatWindows = builtins.map (x: "float, " + x) [
|
||||||
|
@ -54,6 +57,7 @@ let
|
||||||
"title:^${bitwarden}$"
|
"title:^${bitwarden}$"
|
||||||
"title:^${save}$"
|
"title:^${save}$"
|
||||||
"title:^${battle}$"
|
"title:^${battle}$"
|
||||||
|
"title:^${upload}$"
|
||||||
];
|
];
|
||||||
|
|
||||||
pinWindows = builtins.map (x: "pin, " + x) [
|
pinWindows = builtins.map (x: "pin, " + x) [
|
||||||
|
@ -87,9 +91,21 @@ let
|
||||||
];
|
];
|
||||||
|
|
||||||
centerWindows = builtins.map (x: "center, " + x) [
|
centerWindows = builtins.map (x: "center, " + x) [
|
||||||
|
"class:^${blueman}$"
|
||||||
|
"class:^${calculator}$"
|
||||||
|
"class:^${easyeffects}$"
|
||||||
"class:^${emote}$"
|
"class:^${emote}$"
|
||||||
"class:^${mpv}$"
|
"class:^${mpv}$"
|
||||||
|
"class:^${vlc}$"
|
||||||
"class:^${nomacs}$"
|
"class:^${nomacs}$"
|
||||||
|
"class:^${flameshot}$"
|
||||||
|
"class:^${scrcpy}$"
|
||||||
|
"title:^(${picture})$"
|
||||||
|
"title:^(${discord-popout})$"
|
||||||
|
"title:^${bitwarden}$"
|
||||||
|
"title:^${save}$"
|
||||||
|
"title:^${battle}$"
|
||||||
|
"title:^${upload}$"
|
||||||
];
|
];
|
||||||
|
|
||||||
opaqueWindows = builtins.map (x: "opaque, " + x) [
|
opaqueWindows = builtins.map (x: "opaque, " + x) [
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue