☝ Cursors
Added Hyprcursor with rose-pine-hyprcursor theme. Moved username into a constant in home.nix. Installed Discord
This commit is contained in:
parent
f60462a770
commit
6d6331f4b4
@ -76,7 +76,7 @@
|
|||||||
xdg-utils
|
xdg-utils
|
||||||
xdg-desktop-portal-gtk
|
xdg-desktop-portal-gtk
|
||||||
xdg-desktop-portal-hyprland
|
xdg-desktop-portal-hyprland
|
||||||
hyprpolkitagent
|
hyprpolkitagent # Auth deamon providing modals for password auth
|
||||||
kdePackages.dolphin
|
kdePackages.dolphin
|
||||||
kdePackages.qtwayland
|
kdePackages.qtwayland
|
||||||
kdePackages.qtsvg
|
kdePackages.qtsvg
|
||||||
@ -89,6 +89,7 @@
|
|||||||
fastfetch
|
fastfetch
|
||||||
freetube
|
freetube
|
||||||
nextcloud-client
|
nextcloud-client
|
||||||
|
discord
|
||||||
];
|
];
|
||||||
|
|
||||||
nix.settings.experimental-features = [
|
nix.settings.experimental-features = [
|
||||||
|
2
fmt
2
fmt
@ -1,5 +1,5 @@
|
|||||||
#!/usr/bin/env sh
|
#!/usr/bin/env sh
|
||||||
|
|
||||||
# Format all .nix files using the new default nix formatter
|
# Format all .nix files using the new default nix formatter
|
||||||
|
# TODO doesn't work when run using ./fmt
|
||||||
nix fmt ./**.nix
|
nix fmt ./**.nix
|
||||||
|
@ -3,20 +3,23 @@
|
|||||||
inputs,
|
inputs,
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
|
let
|
||||||
|
username = "martin";
|
||||||
|
in
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
inputs.nixvim.homeManagerModules.nixvim
|
inputs.nixvim.homeManagerModules.nixvim
|
||||||
./nixvim
|
./nixvim
|
||||||
./rofi
|
./rofi
|
||||||
./wlogout
|
./wlogout
|
||||||
|
../hyprland/hyprcursor
|
||||||
];
|
];
|
||||||
|
|
||||||
# Home Manager needs a bit of information about you and the
|
# Home Manager needs a bit of information about you and the
|
||||||
# paths it should manage.
|
# paths it should manage.
|
||||||
home = {
|
home = {
|
||||||
username = "martin";
|
username = username;
|
||||||
homeDirectory = "/home/martin";
|
homeDirectory = "/home/${username}";
|
||||||
# You can update Home Manager without changing this value. See
|
# You can update Home Manager without changing this value. See
|
||||||
# the Home Manager release notes for a list of state version
|
# the Home Manager release notes for a list of state version
|
||||||
# changes in each release.
|
# changes in each release.
|
||||||
|
14
hyprland/hyprcursor/default.nix
Normal file
14
hyprland/hyprcursor/default.nix
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
{ pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
hyprcursor
|
||||||
|
];
|
||||||
|
|
||||||
|
home.file = {
|
||||||
|
".local/share/icons/rose-pine-hyprcursor" = {
|
||||||
|
source = ./icons;
|
||||||
|
recursive = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
BIN
hyprland/hyprcursor/icons/X_cursor.hlc
Normal file
BIN
hyprland/hyprcursor/icons/X_cursor.hlc
Normal file
Binary file not shown.
BIN
hyprland/hyprcursor/icons/all-scroll.hlc
Normal file
BIN
hyprland/hyprcursor/icons/all-scroll.hlc
Normal file
Binary file not shown.
BIN
hyprland/hyprcursor/icons/bd_double_arrow.hlc
Normal file
BIN
hyprland/hyprcursor/icons/bd_double_arrow.hlc
Normal file
Binary file not shown.
BIN
hyprland/hyprcursor/icons/bottom_left_corner.hlc
Normal file
BIN
hyprland/hyprcursor/icons/bottom_left_corner.hlc
Normal file
Binary file not shown.
BIN
hyprland/hyprcursor/icons/bottom_right_corner.hlc
Normal file
BIN
hyprland/hyprcursor/icons/bottom_right_corner.hlc
Normal file
Binary file not shown.
BIN
hyprland/hyprcursor/icons/bottom_side.hlc
Normal file
BIN
hyprland/hyprcursor/icons/bottom_side.hlc
Normal file
Binary file not shown.
BIN
hyprland/hyprcursor/icons/center_ptr.hlc
Normal file
BIN
hyprland/hyprcursor/icons/center_ptr.hlc
Normal file
Binary file not shown.
BIN
hyprland/hyprcursor/icons/col-resize.hlc
Normal file
BIN
hyprland/hyprcursor/icons/col-resize.hlc
Normal file
Binary file not shown.
BIN
hyprland/hyprcursor/icons/color-picker.hlc
Normal file
BIN
hyprland/hyprcursor/icons/color-picker.hlc
Normal file
Binary file not shown.
BIN
hyprland/hyprcursor/icons/context-menu.hlc
Normal file
BIN
hyprland/hyprcursor/icons/context-menu.hlc
Normal file
Binary file not shown.
BIN
hyprland/hyprcursor/icons/copy.hlc
Normal file
BIN
hyprland/hyprcursor/icons/copy.hlc
Normal file
Binary file not shown.
BIN
hyprland/hyprcursor/icons/cross.hlc
Normal file
BIN
hyprland/hyprcursor/icons/cross.hlc
Normal file
Binary file not shown.
BIN
hyprland/hyprcursor/icons/crossed_circle.hlc
Normal file
BIN
hyprland/hyprcursor/icons/crossed_circle.hlc
Normal file
Binary file not shown.
BIN
hyprland/hyprcursor/icons/dnd_no_drop.hlc
Normal file
BIN
hyprland/hyprcursor/icons/dnd_no_drop.hlc
Normal file
Binary file not shown.
BIN
hyprland/hyprcursor/icons/dotbox.hlc
Normal file
BIN
hyprland/hyprcursor/icons/dotbox.hlc
Normal file
Binary file not shown.
BIN
hyprland/hyprcursor/icons/fd_double_arrow.hlc
Normal file
BIN
hyprland/hyprcursor/icons/fd_double_arrow.hlc
Normal file
Binary file not shown.
BIN
hyprland/hyprcursor/icons/hand1.hlc
Normal file
BIN
hyprland/hyprcursor/icons/hand1.hlc
Normal file
Binary file not shown.
BIN
hyprland/hyprcursor/icons/hand2.hlc
Normal file
BIN
hyprland/hyprcursor/icons/hand2.hlc
Normal file
Binary file not shown.
BIN
hyprland/hyprcursor/icons/left_ptr.hlc
Normal file
BIN
hyprland/hyprcursor/icons/left_ptr.hlc
Normal file
Binary file not shown.
BIN
hyprland/hyprcursor/icons/left_side.hlc
Normal file
BIN
hyprland/hyprcursor/icons/left_side.hlc
Normal file
Binary file not shown.
BIN
hyprland/hyprcursor/icons/link.hlc
Normal file
BIN
hyprland/hyprcursor/icons/link.hlc
Normal file
Binary file not shown.
BIN
hyprland/hyprcursor/icons/move.hlc
Normal file
BIN
hyprland/hyprcursor/icons/move.hlc
Normal file
Binary file not shown.
BIN
hyprland/hyprcursor/icons/pencil.hlc
Normal file
BIN
hyprland/hyprcursor/icons/pencil.hlc
Normal file
Binary file not shown.
BIN
hyprland/hyprcursor/icons/pirate.hlc
Normal file
BIN
hyprland/hyprcursor/icons/pirate.hlc
Normal file
Binary file not shown.
BIN
hyprland/hyprcursor/icons/plus.hlc
Normal file
BIN
hyprland/hyprcursor/icons/plus.hlc
Normal file
Binary file not shown.
BIN
hyprland/hyprcursor/icons/question_arrow.hlc
Normal file
BIN
hyprland/hyprcursor/icons/question_arrow.hlc
Normal file
Binary file not shown.
BIN
hyprland/hyprcursor/icons/right_ptr.hlc
Normal file
BIN
hyprland/hyprcursor/icons/right_ptr.hlc
Normal file
Binary file not shown.
BIN
hyprland/hyprcursor/icons/right_side.hlc
Normal file
BIN
hyprland/hyprcursor/icons/right_side.hlc
Normal file
Binary file not shown.
BIN
hyprland/hyprcursor/icons/row-resize.hlc
Normal file
BIN
hyprland/hyprcursor/icons/row-resize.hlc
Normal file
Binary file not shown.
BIN
hyprland/hyprcursor/icons/sb_down_arrow.hlc
Normal file
BIN
hyprland/hyprcursor/icons/sb_down_arrow.hlc
Normal file
Binary file not shown.
BIN
hyprland/hyprcursor/icons/sb_h_double_arrow.hlc
Normal file
BIN
hyprland/hyprcursor/icons/sb_h_double_arrow.hlc
Normal file
Binary file not shown.
BIN
hyprland/hyprcursor/icons/sb_left_arrow.hlc
Normal file
BIN
hyprland/hyprcursor/icons/sb_left_arrow.hlc
Normal file
Binary file not shown.
BIN
hyprland/hyprcursor/icons/sb_right_arrow.hlc
Normal file
BIN
hyprland/hyprcursor/icons/sb_right_arrow.hlc
Normal file
Binary file not shown.
BIN
hyprland/hyprcursor/icons/sb_up_arrow.hlc
Normal file
BIN
hyprland/hyprcursor/icons/sb_up_arrow.hlc
Normal file
Binary file not shown.
BIN
hyprland/hyprcursor/icons/sb_v_double_arrow.hlc
Normal file
BIN
hyprland/hyprcursor/icons/sb_v_double_arrow.hlc
Normal file
Binary file not shown.
BIN
hyprland/hyprcursor/icons/top_left_corner.hlc
Normal file
BIN
hyprland/hyprcursor/icons/top_left_corner.hlc
Normal file
Binary file not shown.
BIN
hyprland/hyprcursor/icons/top_right_corner.hlc
Normal file
BIN
hyprland/hyprcursor/icons/top_right_corner.hlc
Normal file
Binary file not shown.
BIN
hyprland/hyprcursor/icons/top_side.hlc
Normal file
BIN
hyprland/hyprcursor/icons/top_side.hlc
Normal file
Binary file not shown.
BIN
hyprland/hyprcursor/icons/vertical-text.hlc
Normal file
BIN
hyprland/hyprcursor/icons/vertical-text.hlc
Normal file
Binary file not shown.
BIN
hyprland/hyprcursor/icons/wayland-cursor.hlc
Normal file
BIN
hyprland/hyprcursor/icons/wayland-cursor.hlc
Normal file
Binary file not shown.
BIN
hyprland/hyprcursor/icons/xterm.hlc
Normal file
BIN
hyprland/hyprcursor/icons/xterm.hlc
Normal file
Binary file not shown.
BIN
hyprland/hyprcursor/icons/zoom-in.hlc
Normal file
BIN
hyprland/hyprcursor/icons/zoom-in.hlc
Normal file
Binary file not shown.
BIN
hyprland/hyprcursor/icons/zoom-out.hlc
Normal file
BIN
hyprland/hyprcursor/icons/zoom-out.hlc
Normal file
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user