Merge pull request #130 from DarkKirb/fixup-sway-config

Fix cofnig once more
This commit is contained in:
Charlotte 🦝 Delenk 2023-01-01 19:04:24 +01:00 committed by GitHub
commit f44be4be6c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 9 additions and 14 deletions

View file

@ -116,8 +116,4 @@ in {
ibus.engines = with pkgs.ibus-engines; [anthy]; ibus.engines = with pkgs.ibus-engines; [anthy];
}; };
security.polkit.enable = true; security.polkit.enable = true;
security.pam.services.kwallet = {
name = "kwallet";
enableKwallet = true;
};
} }

View file

@ -5,7 +5,7 @@
settings = { settings = {
main = { main = {
term = "xterm-256color"; term = "xterm-256color";
font = "FiraCode Nerd Font:size=12"; font = "FiraCode Nerd Font:size=6";
dpi-aware = "yes"; dpi-aware = "yes";
}; };
}; };

View file

@ -20,7 +20,7 @@
} }
for k in $(seq 0 $((${c}{#win_ids[@]} - 1))); do for k in $(seq 0 $((${c}{#win_ids[@]} - 1))); do
echo -e "<span weight=\\"bold\\">\\${c}{win_types[$k]}</span> - ${c}{win_names[$k]}" echo -e "<span weight=\"bold\">${c}{win_types[$k]}</span> - ${c}{win_names[$k]}"
done | rofi -dmenu -markup-rows -i -p window -format i | switch done | rofi -dmenu -markup-rows -i -p window -format i | switch
''; '';
screenshot_then_switch = pkgs.writeScript "screenshotThenSwitch" '' screenshot_then_switch = pkgs.writeScript "screenshotThenSwitch" ''
@ -109,7 +109,7 @@ in {
in in
lib.mkOptionDefault { lib.mkOptionDefault {
"${modifier}+Return" = "exec ${pkgs.foot}/bin/foot"; "${modifier}+Return" = "exec ${pkgs.foot}/bin/foot";
"${modifier}+d" = "exec ${pkgs.rofi}/bin/rofi --show drun"; "${modifier}+d" = "exec ${pkgs.rofi}/bin/rofi -show drun";
"Print" = "mode screenshot"; "Print" = "mode screenshot";
"XF86AudioRaiseVolume" = "exec ${pkgs.pulseaudio}/bin/pactl set-sink-volume @DEFAULT_SINK@ +5%"; "XF86AudioRaiseVolume" = "exec ${pkgs.pulseaudio}/bin/pactl set-sink-volume @DEFAULT_SINK@ +5%";
"XF86AudioLowerVolume" = "exec ${pkgs.pulseaudio}/bin/pactl set-sink-volume @DEFAULT_SINK@ -5%"; "XF86AudioLowerVolume" = "exec ${pkgs.pulseaudio}/bin/pactl set-sink-volume @DEFAULT_SINK@ -5%";
@ -158,6 +158,7 @@ in {
extraConfig = '' extraConfig = ''
exec ${configure-gtk}/bin/configure-gtk exec ${configure-gtk}/bin/configure-gtk
exec ${pkgs.systemd}/bin/systemctl --user import-environment exec ${pkgs.systemd}/bin/systemctl --user import-environment
default_border none
gaps outer 8 gaps outer 8
gaps inner 4 gaps inner 4
''; '';

View file

@ -39,7 +39,7 @@ in {
} }
window#waybar { window#waybar {
background: tranparent; background: transparent;
opacity: 0.9; opacity: 0.9;
} }

View file

@ -20,8 +20,6 @@
"memory" "memory"
"temperature" "temperature"
"backlight" "backlight"
"keyboard-state"
# "sway/language"
"battery" "battery"
"battery#bat2" "battery#bat2"
"clock" "clock"
@ -63,8 +61,8 @@
on-click = "${pkgs.mpc-cli}/bin/mpc toggle"; on-click = "${pkgs.mpc-cli}/bin/mpc toggle";
on-click-middle = "${pkgs.foot}/bin/foot ${pkgs.ncmpcpp}/bin/ncmpcpp"; on-click-middle = "${pkgs.foot}/bin/foot ${pkgs.ncmpcpp}/bin/ncmpcpp";
on-click-right = "${pkgs.mpc-cli}/bin/mpc stop"; on-click-right = "${pkgs.mpc-cli}/bin/mpc stop";
on-scroll-up = "${pkgs.mpc-cli}/bin/mpc seekthrough +00:00:10"; on-scroll-up = "${pkgs.mpc-cli}/bin/mpc seekthrough +00:00:01";
on-scroll-down = "${pkgs.mpc-cli}/bin/mpc seekthrough -00:00:10"; on-scroll-down = "${pkgs.mpc-cli}/bin/mpc seekthrough -00:00:01";
}; };
idle_inhibitor = { idle_inhibitor = {
format = "{icon}"; format = "{icon}";
@ -78,7 +76,7 @@
}; };
clock = { clock = {
tooltip-format = "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>"; tooltip-format = "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>";
format = "{:%Y-%m-%dT%H:%M:%S+01:00}"; format = "{:%H:%M}";
}; };
cpu = { cpu = {
format = "{usage}% "; format = "{usage}% ";

View file

@ -1,7 +1,7 @@
inputs: {lib, ...}: let inputs: {lib, ...}: let
# Taken from https://github.com/gytis-ivaskevicius/flake-utils-plus/blob/master/lib/options.nix # Taken from https://github.com/gytis-ivaskevicius/flake-utils-plus/blob/master/lib/options.nix
inherit (lib) filterAttrs mapAttrs'; inherit (lib) filterAttrs mapAttrs';
flakes = filterAttrs (name: value: value ? outputs) inputs; flakes = filterAttrs (name: value: (name != "self") && (value ? outputs)) inputs;
nixRegistry = nixRegistry =
builtins.mapAttrs builtins.mapAttrs
(name: v: {flake = v;}) (name: v: {flake = v;})