Update
This commit is contained in:
@@ -1,6 +1,5 @@
|
||||
{ pkgs, ... }:
|
||||
let
|
||||
|
||||
clipboard-clear = pkgs.writeShellScriptBin "clipboard-clear" ''
|
||||
clipman clear --all
|
||||
'';
|
||||
@@ -14,5 +13,4 @@ in {
|
||||
[ "${clipboard-clear}" "wl-paste -t text --watch clipman store" ];
|
||||
home.packages = with pkgs; [ clipman clipboard clipboard-clear ];
|
||||
services.clipman.enable = true;
|
||||
|
||||
}
|
||||
|
||||
@@ -6,130 +6,11 @@
|
||||
style.name = "gtk2";
|
||||
};
|
||||
|
||||
gtk = { enable = true; };
|
||||
#
|
||||
# theme = { name = "FlatColor"; };
|
||||
#
|
||||
# iconTheme = {
|
||||
# package = pkgs.kora-icon-theme;
|
||||
# name = "Kora";
|
||||
# };
|
||||
#
|
||||
# font = {
|
||||
# name = config.var.theme.font;
|
||||
# size = config.var.theme.font-size;
|
||||
# };
|
||||
#
|
||||
# gtk3.extraConfig = {
|
||||
# Settings = ''
|
||||
# gtk-application-prefer-dark-theme=1
|
||||
# '';
|
||||
# };
|
||||
#
|
||||
# gtk4.extraConfig = {
|
||||
# Settings = ''
|
||||
# gtk-application-prefer-dark-theme=1
|
||||
# '';
|
||||
# };
|
||||
# };
|
||||
#
|
||||
# home.pointerCursor = {
|
||||
# gtk.enable = true;
|
||||
# package = pkgs.bibata-cursors;
|
||||
# name = "Bibata-Modern-Classic";
|
||||
# size = 14;
|
||||
# };
|
||||
#
|
||||
# home.file = {
|
||||
# ".local/share/themes/FlatColor" = {
|
||||
# recursive = true;
|
||||
# source = pkgs.stdenv.mkDerivation {
|
||||
# name = "FlatColor";
|
||||
#
|
||||
# src = pkgs.fetchFromGitHub {
|
||||
# owner = "jasperro";
|
||||
# repo = "FlatColor";
|
||||
# rev = "0a56c50e8c5e2ad35f6174c19a00e01b30874074";
|
||||
# hash = "sha256-P8RnYTk9Z1rCBEEMLTVRrNr5tUM/Pc9dsdMtpHd1Y18=";
|
||||
# };
|
||||
#
|
||||
# buildPhase = ''
|
||||
# mkdir -p $out
|
||||
# # delete the default gtk-color-scheme:
|
||||
# file="./gtk-2.0/gtkrc"
|
||||
# sed -i '3,29d' $file
|
||||
# sed -i '3i include "../colors2"' $file
|
||||
#
|
||||
# file="./gtk-3.0/gtk.css"
|
||||
# sed -i '2,10d' $file
|
||||
# sed -i '2i @import url("../colors3");' $file
|
||||
#
|
||||
# file="./gtk-3.20/gtk.css"
|
||||
# sed -i '2,26d' $file
|
||||
# sed -i '2i @import url("../colors3");' $file
|
||||
#
|
||||
# cp -r . $out
|
||||
# '';
|
||||
# };
|
||||
# };
|
||||
#
|
||||
# ".local/share/themes/FlatColor/colors2".text = ''
|
||||
# bg_color:#${config.var.theme.colors.bg}
|
||||
# color0:#${config.var.theme.colors.c0}
|
||||
# color1:#${config.var.theme.colors.c1}
|
||||
# color2:#${config.var.theme.colors.c2}
|
||||
# color3:#${config.var.theme.colors.c3}
|
||||
# color4:#${config.var.theme.colors.c4}
|
||||
# color5:#${config.var.theme.colors.c5}
|
||||
# color6:#${config.var.theme.colors.c6}
|
||||
# color7:#${config.var.theme.colors.c7}
|
||||
# color8:#${config.var.theme.colors.c8}
|
||||
# color9:#${config.var.theme.colors.c9}
|
||||
# color10:#${config.var.theme.colors.c10}
|
||||
# color11:#${config.var.theme.colors.c11}
|
||||
# color12:#${config.var.theme.colors.c12}
|
||||
# color13:#${config.var.theme.colors.c13}
|
||||
# color14:#${config.var.theme.colors.c14}
|
||||
# color15:#${config.var.theme.colors.c15}
|
||||
# text_color:#${config.var.theme.colors.fg}
|
||||
# selected_bg_color:#${config.var.theme.colors.accent}
|
||||
# selected_fg_color:#${config.var.theme.colors.accentFg}
|
||||
# tooltip_bg_color:#${config.var.theme.colors.bgalt}
|
||||
# tooltip_fg_color:#${config.var.theme.colors.fgalt}
|
||||
# titlebar_bg_color:#${config.var.theme.colors.bgalt}
|
||||
# titlebar_fg_color:#${config.var.theme.colors.fgalt}
|
||||
# menu_bg_color:#${config.var.theme.colors.bgalt}
|
||||
# menu_fg_color:#${config.var.theme.colors.fgalt}
|
||||
# link_color:#${config.var.theme.colors.accent}
|
||||
# '';
|
||||
#
|
||||
# ".local/share/themes/FlatColor/colors3".text = ''
|
||||
# @define-color color0 #${config.var.theme.colors.c0};
|
||||
# @define-color color1 #${config.var.theme.colors.c1};
|
||||
# @define-color color2 #${config.var.theme.colors.c2};
|
||||
# @define-color color3 #${config.var.theme.colors.c3};
|
||||
# @define-color color4 #${config.var.theme.colors.c4};
|
||||
# @define-color color5 #${config.var.theme.colors.c5};
|
||||
# @define-color color6 #${config.var.theme.colors.c6};
|
||||
# @define-color color7 #${config.var.theme.colors.c7};
|
||||
# @define-color color8 #${config.var.theme.colors.c8};
|
||||
# @define-color color9 #${config.var.theme.colors.c9};
|
||||
# @define-color color10 #${config.var.theme.colors.c10};
|
||||
# @define-color color11 #${config.var.theme.colors.c11};
|
||||
# @define-color color12 #${config.var.theme.colors.c12};
|
||||
# @define-color color13 #${config.var.theme.colors.c13};
|
||||
# @define-color color14 #${config.var.theme.colors.c14};
|
||||
# @define-color color15 #${config.var.theme.colors.c15};
|
||||
# @define-color selected_bg_color #${config.var.theme.colors.accent};
|
||||
# @define-color selected_fg_color #${config.var.theme.colors.accentFg};
|
||||
#
|
||||
# @define-color bg_color #${config.var.theme.colors.bg};
|
||||
# @define-color fg_color #${config.var.theme.colors.fg};
|
||||
# @define-color base_color @bg_color;
|
||||
# @define-color text_color @fg_color;
|
||||
# @define-color text_color_disabled mix(@text_color, @base_color, 0.4);
|
||||
# @define-color tooltip_bg_color #${config.var.theme.colors.bgalt};
|
||||
# @define-color tooltip_fg_color #${config.var.theme.colors.fgalt};
|
||||
# '';
|
||||
# };
|
||||
gtk = {
|
||||
enable = true;
|
||||
iconTheme = {
|
||||
package = pkgs.kora-icon-theme;
|
||||
name = "Kora";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1,4 +0,0 @@
|
||||
name = macOS (SVG)
|
||||
description = macOS cursors because they are a beaut!
|
||||
version = 1
|
||||
cursors_directory = hyprcursors
|
||||
@@ -1,12 +1,6 @@
|
||||
{ pkgs, config, inputs, ... }: {
|
||||
|
||||
imports = [
|
||||
./hyprlock.nix
|
||||
./hypridle.nix
|
||||
./hyprpaper.nix
|
||||
# ./hyprcursor.nix
|
||||
./hyprpanel.nix
|
||||
];
|
||||
imports = [ ./hyprlock.nix ./hypridle.nix ./hyprpaper.nix ./hyprpanel.nix ];
|
||||
|
||||
home.packages = with pkgs; [
|
||||
qt5.qtwayland
|
||||
|
||||
@@ -1,6 +0,0 @@
|
||||
{
|
||||
home.file.".local/share/icons/macOS" = {
|
||||
recursive = true;
|
||||
source = ./cursor/macOS;
|
||||
};
|
||||
}
|
||||
@@ -131,7 +131,7 @@
|
||||
"menus.clock.weather.location": "${config.var.location}",
|
||||
"menus.clock.weather.key": "myapikey",
|
||||
"menus.clock.weather.unit": "metric",
|
||||
"menus.dashboard.powermenu.avatar.image": "${config.var.homeDirectory}/.profile_picture.png",
|
||||
"menus.dashboard.powermenu.avatar.image": "/home/${config.var.username}/.profile_picture.png",
|
||||
"menus.dashboard.powermenu.confirmation": false,
|
||||
|
||||
"menus.dashboard.shortcuts.left.shortcut1.icon": "",
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
{
|
||||
xdg.mimeApps = {
|
||||
enable = true;
|
||||
|
||||
defaultApplications = {
|
||||
"text/markdown" = "nvim.desktop";
|
||||
"text/plain" = "nvim.desktop";
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ config, pkgs, ... }: {
|
||||
{ config, pkgs, lib, ... }: {
|
||||
|
||||
home.packages = with pkgs; [ wofi-emoji ];
|
||||
|
||||
@@ -33,66 +33,66 @@
|
||||
key_exit = "Escape";
|
||||
};
|
||||
|
||||
# style = ''
|
||||
# /** ********** Fonts ********** **/
|
||||
#
|
||||
# * {
|
||||
# font-family: "${config.var.theme.font}";
|
||||
# font-weight: 500;
|
||||
# font-size: ${toString config.var.theme.font-size}px;
|
||||
# }
|
||||
#
|
||||
# #window {
|
||||
# background-color: #${config.var.theme.colors.bgalt};
|
||||
# color: #${config.var.theme.colors.fgalt};
|
||||
# border-radius: ${toString config.var.theme.rounding}px;
|
||||
# }
|
||||
#
|
||||
# #outer-box {
|
||||
# padding: 20px;
|
||||
# }
|
||||
#
|
||||
# #input {
|
||||
# background-color: #${config.var.theme.colors.bg};
|
||||
# border: 0px solid #${config.var.theme.colors.accent};
|
||||
# padding: 8px 12px;
|
||||
# }
|
||||
#
|
||||
# #scroll {
|
||||
# margin-top: 20px;
|
||||
# }
|
||||
#
|
||||
# #inner-box {}
|
||||
#
|
||||
# #img {
|
||||
# padding-right: 8px;
|
||||
# }
|
||||
#
|
||||
# #text {
|
||||
# color: #${config.var.theme.colors.c7};
|
||||
# }
|
||||
#
|
||||
# #text:selected {
|
||||
# color: #${config.var.theme.colors.fg};
|
||||
# }
|
||||
#
|
||||
# #entry {
|
||||
# padding: 6px;
|
||||
# }
|
||||
#
|
||||
# #entry:selected {
|
||||
# background-color: #${config.var.theme.colors.accent};
|
||||
# color: #${config.var.theme.colors.accentFg};
|
||||
# }
|
||||
#
|
||||
# #unselected {}
|
||||
#
|
||||
# #selected {}
|
||||
#
|
||||
# #input,
|
||||
# #entry:selected {
|
||||
# border-radius: ${toString config.var.theme.rounding}px;
|
||||
# }
|
||||
# '';
|
||||
style = lib.mkForce
|
||||
# css
|
||||
''
|
||||
* {
|
||||
font-family: "${config.stylix.fonts.serif.name}";
|
||||
font-weight: 500;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
#window {
|
||||
background-color: #${config.lib.stylix.colors.base01};
|
||||
color: #${config.lib.stylix.colors.base06};
|
||||
border-radius: ${toString config.var.theme.rounding}px;
|
||||
}
|
||||
|
||||
#outer-box {
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
#input {
|
||||
background-color: #${config.lib.stylix.colors.base00};
|
||||
border: 0px solid #${config.lib.stylix.colors.base0D};
|
||||
padding: 8px 12px;
|
||||
}
|
||||
|
||||
#scroll {
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
#inner-box {}
|
||||
|
||||
#img {
|
||||
padding-right: 8px;
|
||||
}
|
||||
|
||||
#text {
|
||||
color: #${config.lib.stylix.colors.base05};
|
||||
}
|
||||
|
||||
#text:selected {
|
||||
color: #${config.lib.stylix.colors.base05};
|
||||
}
|
||||
|
||||
#entry {
|
||||
padding: 6px;
|
||||
}
|
||||
|
||||
#entry:selected {
|
||||
background-color: #${config.lib.stylix.colors.base0D};
|
||||
color: #${config.lib.stylix.colors.base05};
|
||||
}
|
||||
|
||||
#unselected {}
|
||||
|
||||
#selected {}
|
||||
|
||||
#input,
|
||||
#entry:selected {
|
||||
border-radius: ${toString config.var.theme.rounding}px;
|
||||
}
|
||||
'';
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user