Compare commits

..

3 Commits

Author SHA1 Message Date
d820a596f5 Add alloy, split graphical into PC and laptop 2023-10-29 19:32:02 +01:00
558812e9e6 Swap caps and escape 2023-10-29 19:30:56 +01:00
efdb559c2f Small font size in alacritty for linux 2023-10-29 19:30:44 +01:00
2 changed files with 4 additions and 1 deletions

View File

@ -40,6 +40,8 @@ case $CHOICE in
;; ;;
esac"; esac";
font-size = if pkgs.stdenv.isLinux then 8 else 15;
base-cfg = { base-cfg = {
window = { window = {
padding.x = 0; padding.x = 0;
@ -50,7 +52,7 @@ esac";
mouse.hide_when_typing = true; mouse.hide_when_typing = true;
font = { font = {
normal.family = "SAX2"; normal.family = "SAX2";
size = 15; size = font-size;
}; };
colors.primary = { colors.primary = {
background = "#282828"; background = "#282828";

View File

@ -19,6 +19,7 @@
}; };
layout = "fox"; layout = "fox";
xkbOptions = "caps:escape";
extraLayouts.fox = { extraLayouts.fox = {
description = "Layout suitable to be used by a fox"; description = "Layout suitable to be used by a fox";
languages = ["se"]; languages = ["se"];