Skip to content

Commit 12dd6cd

Browse files
committed
eww and foot
1 parent 2d045ce commit 12dd6cd

22 files changed

+774
-838
lines changed

Diff for: home/modules/default.nix

+1
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,5 @@ inputs: {
1212
"dunst" = import ./dunst inputs;
1313
"anyrun" = import ./anyrun inputs;
1414
"eww" = import ./wayland/eww inputs;
15+
"foot" = import ./foot inputs;
1516
}

Diff for: home/modules/foot/default.nix

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
_: {pkgs, ...}: let
2+
fontSize = "14";
3+
in {
4+
# lightweight wayland terminal emulator
5+
programs.foot = {
6+
enable = true;
7+
server.enable = true;
8+
settings = {
9+
main = {
10+
shell = "${pkgs.zsh}/bin/zsh";
11+
font = "JetBrainsMono Nerdfont:size=${fontSize}";
12+
pad = "12x12";
13+
dpi-aware = "yes";
14+
selection-target = "both";
15+
};
16+
colors = {
17+
alpha = 0.5;
18+
};
19+
};
20+
};
21+
}

Diff for: home/modules/wayland/eww/config/audio.fish

-88
This file was deleted.

Diff for: home/modules/wayland/eww/config/bar.sh

-59
This file was deleted.

0 commit comments

Comments
 (0)