feat: changes to kanshi nvidia hyprland
Bumped flake inputs to latest
This commit is contained in:
parent
466f0992f1
commit
09e506c6a6
14 changed files with 252 additions and 128 deletions
|
@ -9,7 +9,10 @@
|
|||
source = ./config;
|
||||
};
|
||||
};
|
||||
home.packages = with pkgs; [ags];
|
||||
home.packages = with pkgs; [
|
||||
ags
|
||||
brightnessctl
|
||||
];
|
||||
myAutostartCommands = [
|
||||
#"${pkgs.ags}/bin/ags --init"
|
||||
"${pkgs.ags}/bin/ags"
|
||||
|
|
|
@ -72,6 +72,7 @@
|
|||
zed-editor
|
||||
rhythmbox
|
||||
#clash-verge-rev
|
||||
vesktop
|
||||
qq
|
||||
libreoffice
|
||||
discord
|
||||
|
|
|
@ -19,10 +19,11 @@
|
|||
xwayland = {force_zero_scaling = true;};
|
||||
monitor = [
|
||||
#"eDP-1, 1920x1080@165,0x0,1"
|
||||
",preferred, auto, ${builtins.toString config.displayScale}"
|
||||
"HDMI-A-1, 1920x1080@75, 2560x0, 1"
|
||||
"eDP-1,preferred, auto, ${builtins.toString config.displayScale}"
|
||||
];
|
||||
general = {
|
||||
border_size = 3;
|
||||
border_size = 1;
|
||||
gaps_in = 2.5;
|
||||
gaps_out = 5;
|
||||
};
|
||||
|
@ -39,7 +40,7 @@
|
|||
exec-once =
|
||||
config.myAutostartCommands
|
||||
++ [
|
||||
"[workspace special silent] ${pkgs.foot}/bin/foot -f 'BlexMono Nerd Font:size=12' -o colors.alpha=0.85 ${config.myShells.defaultShell}"
|
||||
"[workspace special silent] ${pkgs.foot}/bin/foot -f 'BlexMono Nerd Font:size=16' -o colors.alpha=0.85 ${config.myShells.defaultShell}"
|
||||
];
|
||||
misc = {
|
||||
disable_hyprland_logo = true;
|
||||
|
@ -55,11 +56,11 @@
|
|||
", XF86AudioLowerVolume, exec, wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%-"
|
||||
];
|
||||
bind = let
|
||||
terminalCmd = "${pkgs.foot}/bin/foot -f 'BlexMono Nerd Font:size=12' -o colors.alpha=0.85 ${config.myShells.defaultShell}";
|
||||
terminalCmd = "${pkgs.foot}/bin/foot -f 'BlexMono Nerd Font:size=16' -o colors.alpha=0.85 ${config.myShells.defaultShell}";
|
||||
screenshotLocation = "/home/${config.myUserName}/Screenshots/$(date '+%Y-%m-%d-%H-%M-%S').png";
|
||||
in
|
||||
[
|
||||
"$mod SHIFT, L, exec, ${pkgs.hyprlock}/bin/hyprlock --immediate"
|
||||
"$mod SHIFT, L, exec, ${pkgs.wlogout}/bin/wlogout"
|
||||
|
||||
"$mod SHIFT, Print, exec, ${pkgs.grimblast}/bin/grimblast copysave output ${screenshotLocation}"
|
||||
", Print, exec, ${pkgs.grimblast}/bin/grimblast copysave area ${screenshotLocation}"
|
||||
|
|
|
@ -33,13 +33,8 @@
|
|||
outputs = [
|
||||
{
|
||||
criteria = "HDMI-A-1";
|
||||
position = "0,0";
|
||||
mode = "1920x1080@60.00Hz";
|
||||
}
|
||||
{
|
||||
criteria = "eDP-1";
|
||||
position = "0,0";
|
||||
status = "disable";
|
||||
position = "2560,0";
|
||||
mode = "1920x1080@75.00Hz";
|
||||
}
|
||||
];
|
||||
};
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
{pkgs}: {
|
||||
cd = "z";
|
||||
cdi = "zi";
|
||||
ls = "${pkgs.eza}/bin/exa";
|
||||
ls = "${pkgs.lsd}/bin/lsd";
|
||||
cat = "${pkgs.bat}/bin/bat";
|
||||
ll = "ls -l";
|
||||
rm = "${pkgs.trash-cli}/bin/trash";
|
||||
osupdate = "${pkgs.nh}/bin/nh os switch";
|
||||
homeupdate = "${pkgs.nh}/bin/nh home switch";
|
||||
batmon = "watch -n0 upower -i /org/freedesktop/UPower/devices/battery_BAT1";
|
||||
|
|
|
@ -1,13 +1,14 @@
|
|||
{
|
||||
pkgs,
|
||||
lib,
|
||||
config,
|
||||
...
|
||||
}: {
|
||||
wayland.windowManager.sway = {
|
||||
enable = true;
|
||||
config = rec {
|
||||
modifier = "Mod4";
|
||||
terminal = "${pkgs.foot}/bin/foot -f 'BlexMono Nerd Font:size=24' zsh";
|
||||
terminal = "${pkgs.foot}/bin/foot -f '${config.desktopFontFullName}:size=24' zsh";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue