mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-15 09:35:12 -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;
|
||||
|
||||
# RFP (resistFingerprinting)
|
||||
"privacy.resistFingerprinting" = true;
|
||||
"privacy.resistFingerprinting" = false;
|
||||
"privacy.window.maxInnerWidth" = 1600;
|
||||
"privacy.window.maxInnerHeight" = 900;
|
||||
"privacy.resistFingerprinting.block_mozAddonManager" = true;
|
||||
|
|
|
@ -32,6 +32,8 @@ in
|
|||
file_icons = true;
|
||||
folder_icons = true;
|
||||
indent_size = 15;
|
||||
auto_reveal_entries = false;
|
||||
auto_fold_dirs = false;
|
||||
};
|
||||
indent_guides = {
|
||||
enabled = true;
|
|
@ -12,6 +12,7 @@ let
|
|||
save = "(.*Enter name of file to save to….*)";
|
||||
picture = "(.*Picture-in-Picture.*)";
|
||||
discord-popout = "(.*Discord Popout.*)";
|
||||
upload = "(.*File Upload.*)";
|
||||
signal = "(signal)";
|
||||
vesktop = "(vesktop)";
|
||||
code = "(code)";
|
||||
|
@ -37,6 +38,8 @@ let
|
|||
"maxsize 720 400, title:^${discord-popout}$"
|
||||
"maxsize 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) [
|
||||
|
@ -54,6 +57,7 @@ let
|
|||
"title:^${bitwarden}$"
|
||||
"title:^${save}$"
|
||||
"title:^${battle}$"
|
||||
"title:^${upload}$"
|
||||
];
|
||||
|
||||
pinWindows = builtins.map (x: "pin, " + x) [
|
||||
|
@ -87,9 +91,21 @@ let
|
|||
];
|
||||
|
||||
centerWindows = builtins.map (x: "center, " + x) [
|
||||
"class:^${blueman}$"
|
||||
"class:^${calculator}$"
|
||||
"class:^${easyeffects}$"
|
||||
"class:^${emote}$"
|
||||
"class:^${mpv}$"
|
||||
"class:^${vlc}$"
|
||||
"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) [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue