Compare commits
No commits in common. "92675c329d39a03dc67446a99dae534dd7197e83" and "2d716a990b73c60114c35de85414c0824d9cb17f" have entirely different histories.
92675c329d
...
2d716a990b
7 changed files with 5 additions and 65 deletions
|
@ -1,17 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
||||
<defs id="defs3051">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
color:#d3dae3;
|
||||
}
|
||||
.ColorScheme-NegativeText {
|
||||
color:#da4453;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path
|
||||
style="fill:currentColor;fill-opacity:1;stroke:none"
|
||||
class="ColorScheme-NegativeText"
|
||||
d="M 8,2 A 6,6 0 0 0 2,8 6,6 0 0 0 8,14 6,6 0 0 0 14,8 6,6 0 0 0 8,2 Z M 5.70703,5 8,7.29297 10.29297,5 11,5.70703 8.70703,8 11,10.29297 10.29297,11 8,8.70703 5.70703,11 5,10.29297 7.29297,8 5,5.70703 5.70703,5 Z"
|
||||
/>
|
||||
</svg>
|
Before Width: | Height: | Size: 626 B |
|
@ -1,6 +1,6 @@
|
|||
(defvar close_icon "/home/gaspard/.config/eww/assets/icons/window-close.svg")
|
||||
(defvar close_icon "/usr/share/icons/Qogir-ubuntu-dark/16/actions/window-close.svg")
|
||||
|
||||
(defvar end-binary "end-rs")
|
||||
(defvar end-binary "~/.local/bin/end-rs")
|
||||
(defvar end-notifications '')
|
||||
(defvar end-histories '')
|
||||
(defvar end-replies '')
|
||||
|
|
|
@ -43,6 +43,8 @@
|
|||
pkgs.yazi
|
||||
# Theme
|
||||
pkgs.bibata-cursors
|
||||
pkgs.qogir-theme
|
||||
pkgs.qogir-icon-theme
|
||||
];
|
||||
|
||||
wayland.windowManager.hyprland = {
|
||||
|
@ -57,6 +59,5 @@
|
|||
../../term/alacritty
|
||||
../../misc/swayosd
|
||||
../../misc/anyrun
|
||||
../../misc/end-rs
|
||||
];
|
||||
}
|
||||
|
|
22
flake.lock
22
flake.lock
|
@ -57,27 +57,6 @@
|
|||
"type": "github"
|
||||
}
|
||||
},
|
||||
"end-rs": {
|
||||
"inputs": {
|
||||
"nixpkgs": [
|
||||
"nixpkgs"
|
||||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1726917158,
|
||||
"narHash": "sha256-Ooj+Io2qBvA1IOZ0Ueks4OYHN6ylhHTxSvkmwG1Wt4E=",
|
||||
"owner": "GaspardCulis",
|
||||
"repo": "end-rs",
|
||||
"rev": "11b6f3c1e8d795b67d1b18bc28874429316ff470",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "GaspardCulis",
|
||||
"ref": "feat/nix",
|
||||
"repo": "end-rs",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"home-manager": {
|
||||
"inputs": {
|
||||
"nixpkgs": [
|
||||
|
@ -326,7 +305,6 @@
|
|||
"root": {
|
||||
"inputs": {
|
||||
"disko": "disko",
|
||||
"end-rs": "end-rs",
|
||||
"home-manager": "home-manager",
|
||||
"hy3": "hy3",
|
||||
"hyprland": [
|
||||
|
|
|
@ -21,11 +21,6 @@
|
|||
hy3 = {
|
||||
url = "github:outfoxxed/hy3";
|
||||
};
|
||||
|
||||
end-rs = {
|
||||
url = "github:GaspardCulis/end-rs/feat/nix";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
};
|
||||
|
||||
outputs = {
|
||||
|
|
|
@ -1,11 +1,9 @@
|
|||
### Path to the eww binary
|
||||
eww_binary_path = "eww"
|
||||
eww_binary_path = "/usr/bin/eww"
|
||||
### Where to find the icons for the notifications
|
||||
icon_dirs = [
|
||||
"/usr/share/icons",
|
||||
"/usr/share/pixmaps",
|
||||
"/home/gaspard/.nix-profile/share/icons",
|
||||
"/home/gaspard/.nix-profile/share/pixmaps",
|
||||
]
|
||||
### The theme to use for the icons
|
||||
icon_theme = "Qogir"
|
||||
|
|
|
@ -1,15 +0,0 @@
|
|||
{
|
||||
inputs,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
home.file = {
|
||||
".config/end-rs/config.toml".source = ./config.toml;
|
||||
};
|
||||
|
||||
home.packages = [
|
||||
inputs.end-rs
|
||||
pkgs.libnotify
|
||||
pkgs.qogir-icon-theme
|
||||
];
|
||||
}
|
Loading…
Reference in a new issue