This commit is contained in:
Hadi 2024-06-26 22:13:14 +02:00
parent c00458c02a
commit dd9c61b9ff
47 changed files with 21 additions and 5 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,4 @@
name = macOS (SVG)
description = macOS cursors because they are a beaut!
version = 1
cursors_directory = hyprcursors

View File

@ -1,11 +1,16 @@
{ pkgs, config, inputs, ... }: {
imports = [ ./hyprlock.nix ./hypridle.nix ./hyprpaper.nix ];
imports = [
./hyprlock.nix
./hypridle.nix
./hyprpaper.nix
# ./hyprcursor.nix
];
home.packages = with pkgs; [
hyprshot
hyprpicker
hyprcursor
# hyprcursor
xdg-desktop-portal-hyprland
wlr-randr
wl-clipboard
@ -86,7 +91,7 @@
bindm = [
"$mod, mouse:272, movewindow" # Move Window (mouse)
"$mod, R, resizewindow" # Resize Window (mouse)
];
];
bindl = [
",XF86AudioMute, exec, sound-toggle" # Toggle Mute
@ -112,8 +117,9 @@
"QT_WAYLAND_DISABLE_WINDOWDECORATION,1"
"GTK_THEME,FlatColor:dark"
"GTK2_RC_FILES,/home/hadi/.local/share/themes/FlatColor/gtk-2.0/gtkrc"
# "HYPRCURSOR_THEME,rose-pine-hyprcursor"
# "HYPRCURSOR_THEME,macOS"
# "HYPRCURSOR_SIZE,16"
# "XCURSOR_SIZE,16"
];
general = {

View File

@ -0,0 +1,6 @@
{
home.file.".local/share/icons/macOS" = {
recursive = true;
source = ./cursor/macOS;
};
}