fix: cursor size inconsistent
This commit is contained in:
parent
1307aa78fa
commit
5951b04024
11 changed files with 81 additions and 41 deletions
|
|
@ -9,7 +9,8 @@
|
|||
}:
|
||||
|
||||
let
|
||||
cursor-size = "24";
|
||||
hyprcursor-size = "32";
|
||||
xcursor-size = "24";
|
||||
in
|
||||
{
|
||||
imports = [
|
||||
|
|
@ -32,7 +33,8 @@ in
|
|||
inputs
|
||||
system
|
||||
nix-version
|
||||
cursor-size
|
||||
xcursor-size
|
||||
hyprcursor-size
|
||||
git-config
|
||||
username
|
||||
;
|
||||
|
|
|
|||
|
|
@ -9,7 +9,8 @@
|
|||
}:
|
||||
|
||||
let
|
||||
cursor-size = "32";
|
||||
hyprcursor-size = "32";
|
||||
xcursor-size = "24";
|
||||
in
|
||||
{
|
||||
imports = [
|
||||
|
|
@ -36,7 +37,8 @@ in
|
|||
inputs
|
||||
system
|
||||
nix-version
|
||||
cursor-size
|
||||
xcursor-size
|
||||
hyprcursor-size
|
||||
git-config
|
||||
username
|
||||
;
|
||||
|
|
|
|||
|
|
@ -16,6 +16,5 @@ in
|
|||
environment.variables = {
|
||||
ELECTRON_OZONE_PLATFORM_HINT = "auto";
|
||||
GSETTINGS_SCHEMA_DIR = "${pkgs.gtk3}/share/gsettings-schemas/${pkgs.gtk3.name}/glib-2.0/schemas";
|
||||
HYPERCURSOR_SIZE = 24;
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -12,7 +12,10 @@
|
|||
enable = true;
|
||||
wlr.enable = true;
|
||||
xdgOpenUsePortal = true;
|
||||
extraPortals = [ pkgs.xdg-desktop-portal-gtk pkgs.xdg-desktop-portal-wlr ];
|
||||
extraPortals = [
|
||||
pkgs.xdg-desktop-portal-gtk
|
||||
pkgs.xdg-desktop-portal-wlr
|
||||
];
|
||||
};
|
||||
|
||||
environment.sessionVariables = {
|
||||
|
|
@ -22,7 +25,6 @@
|
|||
|
||||
environment.systemPackages = with pkgs; [
|
||||
pyprland
|
||||
hyprcursor
|
||||
hyprsunset
|
||||
hyprpicker
|
||||
hyprshot
|
||||
|
|
@ -46,7 +48,10 @@
|
|||
nix = {
|
||||
settings = {
|
||||
warn-dirty = false;
|
||||
experimental-features = [ "nix-command" "flakes" ];
|
||||
experimental-features = [
|
||||
"nix-command"
|
||||
"flakes"
|
||||
];
|
||||
auto-optimise-store = true;
|
||||
substituters = [ "https://hyprland.cachix.org" ];
|
||||
|
||||
|
|
|
|||
|
|
@ -1,8 +1,10 @@
|
|||
{ ... }:
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
console = {
|
||||
font = "Lat2-Terminus16";
|
||||
earlySetup = true;
|
||||
font = "ter-124b";
|
||||
useXkbConfig = true;
|
||||
packages = with pkgs; [ terminus_font ];
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,7 +1,9 @@
|
|||
{ pkgs, config, ... }:
|
||||
|
||||
let
|
||||
getIconScript = pkgs.writeShellScriptBin "get-icon" (builtins.readFile ../../home/config/scripts/getIcons.sh);
|
||||
getIconScript = pkgs.writeShellScriptBin "get-icon" (
|
||||
builtins.readFile ../../home/config/scripts/getIcons.sh
|
||||
);
|
||||
in
|
||||
{
|
||||
programs = {
|
||||
|
|
@ -33,7 +35,7 @@ in
|
|||
set -g status-left "#[fg=#84977f,bg=default,bold] █ session: #S"
|
||||
set -g status-right " #[fg=#828bb8,bg=default,bold]${config.networking.hostName} "
|
||||
|
||||
setw -g window-status-format "#[bg=#171616,bg=default] #[fg=#495361,bg=default]#(${getIconScript}/get-icon #I) #W"
|
||||
setw -g window-status-format "#[fg=#171616,bg=default] #[fg=#495361,bg=default]#(${getIconScript}/get-icon #I) #W"
|
||||
setw -g window-status-current-format "#[fg=#7e93a9,bg=default] #[fg=#7e93a9,bg=default,bold]#(${getIconScript}/get-icon #I) #W"
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -11,7 +11,6 @@
|
|||
|
||||
services = {
|
||||
dbus.enable = true;
|
||||
picom.enable = true;
|
||||
|
||||
blueman.enable = true;
|
||||
|
||||
|
|
@ -27,7 +26,7 @@
|
|||
};
|
||||
|
||||
xserver = {
|
||||
enable = true;
|
||||
enable = false;
|
||||
xkb.layout = "us";
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue