Compare commits
No commits in common. "29ac28bd154be7c6ca7e641d830054f8e26775c2" and "1f06944f93112a378688c8014a6e6a92c3458ef8" have entirely different histories.
29ac28bd15
...
1f06944f93
@ -1,16 +0,0 @@
|
|||||||
let
|
|
||||||
theme = import ../theme.nix;
|
|
||||||
in
|
|
||||||
{
|
|
||||||
catppuccin.cursors = {
|
|
||||||
enable = true;
|
|
||||||
flavor = theme.flavor;
|
|
||||||
accent = "dark";
|
|
||||||
};
|
|
||||||
|
|
||||||
home.pointerCursor = {
|
|
||||||
gtk.enable = true;
|
|
||||||
x11.enable = true;
|
|
||||||
size = 16;
|
|
||||||
};
|
|
||||||
}
|
|
@ -14,7 +14,6 @@ in
|
|||||||
inputs.nixvim.homeManagerModules.nixvim
|
inputs.nixvim.homeManagerModules.nixvim
|
||||||
./btop.nix
|
./btop.nix
|
||||||
./cava.nix
|
./cava.nix
|
||||||
./cursors.nix
|
|
||||||
./default-applications.nix
|
./default-applications.nix
|
||||||
./development
|
./development
|
||||||
./fish.nix
|
./fish.nix
|
||||||
@ -30,6 +29,8 @@ in
|
|||||||
./yazi
|
./yazi
|
||||||
];
|
];
|
||||||
|
|
||||||
|
catppuccin.cursors.enable = true;
|
||||||
|
|
||||||
dconf = {
|
dconf = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
|
@ -4,6 +4,6 @@
|
|||||||
./nixvim
|
./nixvim
|
||||||
./zed.nix
|
./zed.nix
|
||||||
];
|
];
|
||||||
# TODO set Wayland vmOptions in Jetbrains products, Requires current installed version in path
|
# TODO set Walyland vmOptions in Jetbrains products, Requires current installed version
|
||||||
# -Dawt.toolkit.name=WLToolKit
|
# -Dawt.toolkit.name=WLToolKit
|
||||||
}
|
}
|
||||||
|
@ -4,6 +4,7 @@
|
|||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./binds.nix
|
./binds.nix
|
||||||
|
./hyprcursor
|
||||||
./waybar
|
./waybar
|
||||||
./hypridle
|
./hypridle
|
||||||
./hyprlock
|
./hyprlock
|
||||||
|
37
home-manager/hyprland/hyprcursor/default.nix
Normal file
37
home-manager/hyprland/hyprcursor/default.nix
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
{ pkgs, ... }:
|
||||||
|
let
|
||||||
|
cursorSize = 24;
|
||||||
|
cursorTheme = "rose-pine-hyprcursor";
|
||||||
|
cursorDir = "hyprcursors";
|
||||||
|
in
|
||||||
|
{
|
||||||
|
# TODO remove in favor of Catppuccin cursors
|
||||||
|
home = {
|
||||||
|
packages = with pkgs; [
|
||||||
|
hyprcursor
|
||||||
|
];
|
||||||
|
|
||||||
|
file = {
|
||||||
|
".local/share/icons/${cursorTheme}/manifest.hl".text = ''
|
||||||
|
name = ${cursorTheme}
|
||||||
|
description = BreezeX remixed with Rose Pine remixed to Hyprcursor format
|
||||||
|
version = 0.3.2
|
||||||
|
cursors_directory = ${cursorDir}
|
||||||
|
'';
|
||||||
|
".local/share/icons/${cursorTheme}/${cursorDir}" = {
|
||||||
|
source = ./${cursorDir};
|
||||||
|
recursive = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
sessionVariables = {
|
||||||
|
XCURSOR_SIZE = cursorSize;
|
||||||
|
HYPRCURSOR_SIZE = cursorSize;
|
||||||
|
HYPRCURSOR_THEME = cursorSize;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
wayland.windowManager.hyprland.settings.exec-once = [
|
||||||
|
"hyprctl setcursor $HYPRCURSOR_THEME $HYPRCURSOR_SIZE" # Set cursor
|
||||||
|
];
|
||||||
|
}
|
BIN
home-manager/hyprland/hyprcursor/hyprcursors/X_cursor.hlc
Normal file
BIN
home-manager/hyprland/hyprcursor/hyprcursors/X_cursor.hlc
Normal file
Binary file not shown.
BIN
home-manager/hyprland/hyprcursor/hyprcursors/all-scroll.hlc
Normal file
BIN
home-manager/hyprland/hyprcursor/hyprcursors/all-scroll.hlc
Normal file
Binary file not shown.
BIN
home-manager/hyprland/hyprcursor/hyprcursors/bd_double_arrow.hlc
Normal file
BIN
home-manager/hyprland/hyprcursor/hyprcursors/bd_double_arrow.hlc
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
home-manager/hyprland/hyprcursor/hyprcursors/bottom_side.hlc
Normal file
BIN
home-manager/hyprland/hyprcursor/hyprcursors/bottom_side.hlc
Normal file
Binary file not shown.
BIN
home-manager/hyprland/hyprcursor/hyprcursors/center_ptr.hlc
Normal file
BIN
home-manager/hyprland/hyprcursor/hyprcursors/center_ptr.hlc
Normal file
Binary file not shown.
BIN
home-manager/hyprland/hyprcursor/hyprcursors/col-resize.hlc
Normal file
BIN
home-manager/hyprland/hyprcursor/hyprcursors/col-resize.hlc
Normal file
Binary file not shown.
BIN
home-manager/hyprland/hyprcursor/hyprcursors/color-picker.hlc
Normal file
BIN
home-manager/hyprland/hyprcursor/hyprcursors/color-picker.hlc
Normal file
Binary file not shown.
BIN
home-manager/hyprland/hyprcursor/hyprcursors/context-menu.hlc
Normal file
BIN
home-manager/hyprland/hyprcursor/hyprcursors/context-menu.hlc
Normal file
Binary file not shown.
BIN
home-manager/hyprland/hyprcursor/hyprcursors/copy.hlc
Normal file
BIN
home-manager/hyprland/hyprcursor/hyprcursors/copy.hlc
Normal file
Binary file not shown.
BIN
home-manager/hyprland/hyprcursor/hyprcursors/cross.hlc
Normal file
BIN
home-manager/hyprland/hyprcursor/hyprcursors/cross.hlc
Normal file
Binary file not shown.
BIN
home-manager/hyprland/hyprcursor/hyprcursors/crossed_circle.hlc
Normal file
BIN
home-manager/hyprland/hyprcursor/hyprcursors/crossed_circle.hlc
Normal file
Binary file not shown.
BIN
home-manager/hyprland/hyprcursor/hyprcursors/dnd_no_drop.hlc
Normal file
BIN
home-manager/hyprland/hyprcursor/hyprcursors/dnd_no_drop.hlc
Normal file
Binary file not shown.
BIN
home-manager/hyprland/hyprcursor/hyprcursors/dotbox.hlc
Normal file
BIN
home-manager/hyprland/hyprcursor/hyprcursors/dotbox.hlc
Normal file
Binary file not shown.
BIN
home-manager/hyprland/hyprcursor/hyprcursors/fd_double_arrow.hlc
Normal file
BIN
home-manager/hyprland/hyprcursor/hyprcursors/fd_double_arrow.hlc
Normal file
Binary file not shown.
BIN
home-manager/hyprland/hyprcursor/hyprcursors/hand1.hlc
Normal file
BIN
home-manager/hyprland/hyprcursor/hyprcursors/hand1.hlc
Normal file
Binary file not shown.
BIN
home-manager/hyprland/hyprcursor/hyprcursors/hand2.hlc
Normal file
BIN
home-manager/hyprland/hyprcursor/hyprcursors/hand2.hlc
Normal file
Binary file not shown.
BIN
home-manager/hyprland/hyprcursor/hyprcursors/left_ptr.hlc
Normal file
BIN
home-manager/hyprland/hyprcursor/hyprcursors/left_ptr.hlc
Normal file
Binary file not shown.
BIN
home-manager/hyprland/hyprcursor/hyprcursors/left_side.hlc
Normal file
BIN
home-manager/hyprland/hyprcursor/hyprcursors/left_side.hlc
Normal file
Binary file not shown.
BIN
home-manager/hyprland/hyprcursor/hyprcursors/link.hlc
Normal file
BIN
home-manager/hyprland/hyprcursor/hyprcursors/link.hlc
Normal file
Binary file not shown.
BIN
home-manager/hyprland/hyprcursor/hyprcursors/move.hlc
Normal file
BIN
home-manager/hyprland/hyprcursor/hyprcursors/move.hlc
Normal file
Binary file not shown.
BIN
home-manager/hyprland/hyprcursor/hyprcursors/pencil.hlc
Normal file
BIN
home-manager/hyprland/hyprcursor/hyprcursors/pencil.hlc
Normal file
Binary file not shown.
BIN
home-manager/hyprland/hyprcursor/hyprcursors/pirate.hlc
Normal file
BIN
home-manager/hyprland/hyprcursor/hyprcursors/pirate.hlc
Normal file
Binary file not shown.
BIN
home-manager/hyprland/hyprcursor/hyprcursors/plus.hlc
Normal file
BIN
home-manager/hyprland/hyprcursor/hyprcursors/plus.hlc
Normal file
Binary file not shown.
BIN
home-manager/hyprland/hyprcursor/hyprcursors/question_arrow.hlc
Normal file
BIN
home-manager/hyprland/hyprcursor/hyprcursors/question_arrow.hlc
Normal file
Binary file not shown.
BIN
home-manager/hyprland/hyprcursor/hyprcursors/right_ptr.hlc
Normal file
BIN
home-manager/hyprland/hyprcursor/hyprcursors/right_ptr.hlc
Normal file
Binary file not shown.
BIN
home-manager/hyprland/hyprcursor/hyprcursors/right_side.hlc
Normal file
BIN
home-manager/hyprland/hyprcursor/hyprcursors/right_side.hlc
Normal file
Binary file not shown.
BIN
home-manager/hyprland/hyprcursor/hyprcursors/row-resize.hlc
Normal file
BIN
home-manager/hyprland/hyprcursor/hyprcursors/row-resize.hlc
Normal file
Binary file not shown.
BIN
home-manager/hyprland/hyprcursor/hyprcursors/sb_down_arrow.hlc
Normal file
BIN
home-manager/hyprland/hyprcursor/hyprcursors/sb_down_arrow.hlc
Normal file
Binary file not shown.
Binary file not shown.
BIN
home-manager/hyprland/hyprcursor/hyprcursors/sb_left_arrow.hlc
Normal file
BIN
home-manager/hyprland/hyprcursor/hyprcursors/sb_left_arrow.hlc
Normal file
Binary file not shown.
BIN
home-manager/hyprland/hyprcursor/hyprcursors/sb_right_arrow.hlc
Normal file
BIN
home-manager/hyprland/hyprcursor/hyprcursors/sb_right_arrow.hlc
Normal file
Binary file not shown.
BIN
home-manager/hyprland/hyprcursor/hyprcursors/sb_up_arrow.hlc
Normal file
BIN
home-manager/hyprland/hyprcursor/hyprcursors/sb_up_arrow.hlc
Normal file
Binary file not shown.
Binary file not shown.
BIN
home-manager/hyprland/hyprcursor/hyprcursors/top_left_corner.hlc
Normal file
BIN
home-manager/hyprland/hyprcursor/hyprcursors/top_left_corner.hlc
Normal file
Binary file not shown.
Binary file not shown.
BIN
home-manager/hyprland/hyprcursor/hyprcursors/top_side.hlc
Normal file
BIN
home-manager/hyprland/hyprcursor/hyprcursors/top_side.hlc
Normal file
Binary file not shown.
BIN
home-manager/hyprland/hyprcursor/hyprcursors/vertical-text.hlc
Normal file
BIN
home-manager/hyprland/hyprcursor/hyprcursors/vertical-text.hlc
Normal file
Binary file not shown.
BIN
home-manager/hyprland/hyprcursor/hyprcursors/wayland-cursor.hlc
Normal file
BIN
home-manager/hyprland/hyprcursor/hyprcursors/wayland-cursor.hlc
Normal file
Binary file not shown.
BIN
home-manager/hyprland/hyprcursor/hyprcursors/xterm.hlc
Normal file
BIN
home-manager/hyprland/hyprcursor/hyprcursors/xterm.hlc
Normal file
Binary file not shown.
BIN
home-manager/hyprland/hyprcursor/hyprcursors/zoom-in.hlc
Normal file
BIN
home-manager/hyprland/hyprcursor/hyprcursors/zoom-in.hlc
Normal file
Binary file not shown.
BIN
home-manager/hyprland/hyprcursor/hyprcursors/zoom-out.hlc
Normal file
BIN
home-manager/hyprland/hyprcursor/hyprcursors/zoom-out.hlc
Normal file
Binary file not shown.
@ -1,7 +1,7 @@
|
|||||||
let
|
let
|
||||||
# Time in seconds
|
# Time in seconds
|
||||||
lockAfter = 1200;
|
lockAfter = 1200;
|
||||||
screenOffAfter = 1500;
|
#screenOffAfter = 1500;
|
||||||
suspendAfter = 7200;
|
suspendAfter = 7200;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
@ -20,12 +20,12 @@ in
|
|||||||
timeout = lockAfter;
|
timeout = lockAfter;
|
||||||
on-timeout = "loginctl lock-session";
|
on-timeout = "loginctl lock-session";
|
||||||
}
|
}
|
||||||
# Turn off screens
|
# Turn off screens TODO still buggy on DP-1
|
||||||
{
|
# {
|
||||||
timeout = screenOffAfter;
|
# timeout = screenOffAfter;
|
||||||
on-timeout = "hyprctl dispatch dpms off";
|
# on-timeout = "hyprctl dispatch dpms off";
|
||||||
on-resume = "hyprctl dispatch dpms on";
|
# on-resume = "hyprctl dispatch dpms on";
|
||||||
}
|
# }
|
||||||
# Suspend
|
# Suspend
|
||||||
{
|
{
|
||||||
timeout = suspendAfter;
|
timeout = suspendAfter;
|
||||||
|
@ -7,8 +7,8 @@ in
|
|||||||
{
|
{
|
||||||
wayland.windowManager.hyprland.settings = {
|
wayland.windowManager.hyprland.settings = {
|
||||||
monitor = [
|
monitor = [
|
||||||
"DP-1, 3440x1440@175, 0x0, 1"
|
"DP-1, 1920x1080@144, 0x0, 1"
|
||||||
"DP-3, 3840x2160@60, 3440x0, 1.5, transform, 1"
|
"DP-3, 3840x2160@60, 1920x0, 1.5, transform, 1"
|
||||||
];
|
];
|
||||||
|
|
||||||
# Autostart
|
# Autostart
|
||||||
|
@ -24,7 +24,6 @@
|
|||||||
shellAliases = {
|
shellAliases = {
|
||||||
# Transfer shell config to target device
|
# Transfer shell config to target device
|
||||||
ssh = "kitty +kitten ssh";
|
ssh = "kitty +kitten ssh";
|
||||||
nix-shell = "nix-shell --run fish"; # Start nix-shells using fish
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user