feat: add fzf and remove bluetooth window rules
This commit is contained in:
parent
102e3de7e7
commit
b3e357dfe2
4 changed files with 76 additions and 53 deletions
|
@ -2,6 +2,8 @@ what is currently not working:
|
||||||
- gdm thinks i tried to login when pressing on the user
|
- gdm thinks i tried to login when pressing on the user
|
||||||
|
|
||||||
what i want to do:
|
what i want to do:
|
||||||
- split up configs well
|
|
||||||
- learn flakes
|
- learn flakes
|
||||||
- give more stuff over to home-manager
|
|
||||||
|
# Docs
|
||||||
|
|
||||||
|
Since I use my laptop with one user, I symlinked the configs to my home directory following the tutorial [here](https://nixos.wiki/wiki/NixOS_configuration_editors)
|
||||||
|
|
|
@ -32,7 +32,6 @@ exec-once = squeekboard
|
||||||
|
|
||||||
exec-once = $menu
|
exec-once = $menu
|
||||||
exec-once = hyprpaper
|
exec-once = hyprpaper
|
||||||
exec-once = $HYPR_PATH/lose-focus.sh
|
|
||||||
|
|
||||||
# after boot, there are 2 bars for some reason, so I kill them and rerun the command
|
# after boot, there are 2 bars for some reason, so I kill them and rerun the command
|
||||||
exec-once = bash -c "killall -r -0 waybar && killall -r waybar; waybar"
|
exec-once = bash -c "killall -r -0 waybar && killall -r waybar; waybar"
|
||||||
|
@ -60,7 +59,7 @@ input {
|
||||||
follow_mouse = 1
|
follow_mouse = 1
|
||||||
|
|
||||||
touchpad {
|
touchpad {
|
||||||
natural_scroll = no
|
natural_scroll = yes
|
||||||
}
|
}
|
||||||
|
|
||||||
sensitivity = 0 # -1.0 - 1.0, 0 means no modification.
|
sensitivity = 0 # -1.0 - 1.0, 0 means no modification.
|
||||||
|
@ -155,10 +154,6 @@ windowrule = float,title:^(Open File)$
|
||||||
windowrule = pin,^(nm-tray)$
|
windowrule = pin,^(nm-tray)$
|
||||||
#windowrule = move cursor 0 -35,^(nm-tray)$
|
#windowrule = move cursor 0 -35,^(nm-tray)$
|
||||||
|
|
||||||
windowrule = float,^(.blueman-manager-wrapped)$
|
|
||||||
windowrule = move cursor 0 0,^(.blueman-manager-wrapped)$
|
|
||||||
windowrule = size 400 581,^(.blueman-manager-wrapped)$
|
|
||||||
|
|
||||||
# See https://wiki.hyprland.org/Configuring/Keywords/ for more
|
# See https://wiki.hyprland.org/Configuring/Keywords/ for more
|
||||||
$mainMod = SUPER
|
$mainMod = SUPER
|
||||||
|
|
||||||
|
|
|
@ -5,14 +5,33 @@ let
|
||||||
in
|
in
|
||||||
|
|
||||||
{
|
{
|
||||||
programs.eww = {
|
programs = {
|
||||||
|
fzf = {
|
||||||
enable = true;
|
enable = true;
|
||||||
configDir = "${configDir}/eww"; # see hyprland.nix for scripts path
|
enableBashIntegration = true;
|
||||||
package =
|
colors = {
|
||||||
(builtins.getFlake "github:matt1432/eww-exclusiver").packages.x86_64-linux.default;
|
fg = "ffffff";
|
||||||
|
bg = "4b5263";
|
||||||
|
hl = "d858fe";
|
||||||
|
"fg+" = "#ffffff";
|
||||||
|
"bg+" = "#4b5263";
|
||||||
|
"hl+" = "#d858fe";
|
||||||
|
info = "#98c379";
|
||||||
|
prompt = "#61afef";
|
||||||
|
pointer = "#be5046";
|
||||||
|
marker = "#e5c07b";
|
||||||
|
spinner = "#61afef";
|
||||||
|
header = "#61afef";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
programs.alacritty = {
|
eww = {
|
||||||
|
enable = true;
|
||||||
|
configDir = "${configDir}/eww"; # see hyprland.nix for scripts path
|
||||||
|
package = (builtins.getFlake "github:matt1432/eww-exclusiver").packages.x86_64-linux.default;
|
||||||
|
};
|
||||||
|
|
||||||
|
alacritty = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
env = {
|
env = {
|
||||||
|
@ -51,4 +70,5 @@ in
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,12 +1,18 @@
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
programs.waybar = {
|
programs = {
|
||||||
|
btop = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
waybar = {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = pkgs.waybar.overrideAttrs (oldAttrs: {
|
package = pkgs.waybar.overrideAttrs (oldAttrs: {
|
||||||
mesonFlags = oldAttrs.mesonFlags ++ [ "-Dexperimental=true" ];
|
mesonFlags = oldAttrs.mesonFlags ++ [ "-Dexperimental=true" ];
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
};
|
||||||
|
|
||||||
home.packages = with pkgs;
|
home.packages = with pkgs;
|
||||||
(with xorg; [
|
(with xorg; [
|
||||||
|
|
Loading…
Reference in a new issue