fix everything

This commit is contained in:
atagen 2023-09-11 21:49:34 +10:00
parent 6bee06e028
commit 7a1488860b
101 changed files with 51 additions and 27 deletions

0
.gitignore vendored Executable file → Normal file
View file

0
.gitmodules vendored Executable file → Normal file
View file

0
.nvidia-settings-rc Executable file → Normal file
View file

0
.p10k.zsh Executable file → Normal file
View file

0
TODO Executable file → Normal file
View file

45
flake.lock generated Executable file → Normal file
View file

@ -41,6 +41,27 @@
"type": "github"
}
},
"anyrun": {
"inputs": {
"flake-parts": "flake-parts",
"nixpkgs": [
"nixpkgs"
]
},
"locked": {
"lastModified": 1692476235,
"narHash": "sha256-NGUDp/24HCIVWE0xZNHIdzz3q2WDk7MQz1wC7ub/e2U=",
"owner": "Kirottu",
"repo": "anyrun",
"rev": "76af3eb198f376303194c31a83f2399a043acf1b",
"type": "github"
},
"original": {
"owner": "Kirottu",
"repo": "anyrun",
"type": "github"
}
},
"crane": {
"inputs": {
"flake-compat": "flake-compat",
@ -155,7 +176,7 @@
"all-cabal-json": "all-cabal-json",
"crane": "crane_3",
"devshell": "devshell_2",
"flake-parts": "flake-parts",
"flake-parts": "flake-parts_2",
"flake-utils-pre-commit": "flake-utils-pre-commit",
"ghc-utils": "ghc-utils",
"gomod2nix": "gomod2nix",
@ -294,6 +315,27 @@
}
},
"flake-parts": {
"inputs": {
"nixpkgs-lib": [
"anyrun",
"nixpkgs"
]
},
"locked": {
"lastModified": 1685662779,
"narHash": "sha256-cKDDciXGpMEjP1n6HlzKinN0H+oLmNpgeCTzYnsA2po=",
"owner": "hercules-ci",
"repo": "flake-parts",
"rev": "71fb97f0d875fd4de4994dfb849f2c75e17eb6c3",
"type": "github"
},
"original": {
"owner": "hercules-ci",
"repo": "flake-parts",
"type": "github"
}
},
"flake-parts_2": {
"inputs": {
"nixpkgs-lib": [
"persway",
@ -899,6 +941,7 @@
},
"root": {
"inputs": {
"anyrun": "anyrun",
"flake-utils": "flake-utils",
"helix": "helix",
"home-manager": "home-manager",

5
flake.nix Executable file → Normal file
View file

@ -21,11 +21,6 @@
inputs.flake-utils.follows = "flake-utils";
};
# anyrun = {
# url = "github:Kirottu/anyrun";
# inputs.nixpkgs.follows = "nixpkgs";
# };
rust-overlay = {
url = "github:oxalica/rust-overlay";
inputs.nixpkgs.follows = "nixpkgs";

0
gtk-theme.nix Executable file → Normal file
View file

0
header.sh Executable file → Normal file
View file

0
home/bolt.nix Executable file → Normal file
View file

0
home/dots/Xresources Executable file → Normal file
View file

0
home/dots/eww/colors.scss Executable file → Normal file
View file

0
home/dots/hyprland/hyprland.conf Executable file → Normal file
View file

0
home/dots/ironbar.corn Executable file → Normal file
View file

0
home/dots/ironbar.css Executable file → Normal file
View file

0
home/dots/swaync/config.json Executable file → Normal file
View file

0
home/dots/swaync/configSchema.json Executable file → Normal file
View file

0
home/dots/swaync/style.css Executable file → Normal file
View file

0
home/dots/wlogout/layout Executable file → Normal file
View file

0
home/dots/wlogout/style.css Executable file → Normal file
View file

0
home/dots/xonshrc Executable file → Normal file
View file

0
home/dots/xonshrc.py Executable file → Normal file
View file

0
home/dots/zsh Executable file → Normal file
View file

28
home/home.nix Executable file → Normal file
View file

@ -14,7 +14,6 @@ in {
imports = [
inputs.ironbar.homeManagerModules.default
# inputs.anyrun.homeManagerModules.default
# ./programs/eww/default.nix
];
@ -63,8 +62,6 @@ in {
river
# libsForQt5.qtstyleplugin-kvantum
gtk-engine-murrine
persway
@ -331,7 +328,7 @@ in {
swaync = "${lib.getExe swaynotificationcenter}";
persway = "${lib.getExe' persway "persway"} daemon -d spiral";
# PYTHON APP CANT RUN AS SYSTEMD SERVICE HOW EMBARASSING
# flashfocus = "${lib.getExe flashfocus} -o 0.95 -t 175 -n 30 --no-flash-fullscreen -l on_open_close";
flashfocus = "${lib.getExe flashfocus} -o 0.95 -t 175 -n 30 --no-flash-fullscreen -l on_open_close";
};
xdg.enable = true;
@ -417,7 +414,7 @@ in {
"#BTNCOL"
"#BTNBG"
"#BTNFOCUSBG"
# "#WINLOGO"
"#WINLOGO"
]
[
"${pkgs.wlogout}/share/wlogout"
@ -426,26 +423,15 @@ in {
bright.yellow
util.bg
normal.black
# (builtins.path {
# name = "winlogo";
# path = ./winlogo.png;
# sha256 = "7c1ff96b553c7a7ca3a7b7cf8efe830ab7feea92355aed288a10ee7347c24108";
# })
(builtins.path {
name = "winlogo";
path = ./winlogo.png;
sha256 = "7c1ff96b553c7a7ca3a7b7cf8efe830ab7feea92355aed288a10ee7347c24108";
})
]
(builtins.readFile dots/wlogout/style.css));
};
# programs.anyrun = {
# enable = true;
# config = {
# plugins = with inputs.anyrun.packages.${pkgs.system}; [ applications dictionary rink symbols stdin shell ];
# y = { fraction = 0.35; };
# width = { absolute = 400; };
# height = { absolute = 600; };
# showResultsImmediately = true;
# };
# };
programs.fuzzel = with pkgs.rice; {
enable = true;
settings = {

0
home/overlay.nix Executable file → Normal file
View file

0
home/plank.nix Executable file → Normal file
View file

0
home/programs/eww/README.md Executable file → Normal file
View file

0
home/programs/eww/css/_calendar.scss Executable file → Normal file
View file

0
home/programs/eww/css/_colors.scss Executable file → Normal file
View file

0
home/programs/eww/css/_music.scss Executable file → Normal file
View file

0
home/programs/eww/css/_osd.scss Executable file → Normal file
View file

0
home/programs/eww/css/_sidebar.scss Executable file → Normal file
View file

0
home/programs/eww/css/_system.scss Executable file → Normal file
View file

0
home/programs/eww/css/_volume.scss Executable file → Normal file
View file

0
home/programs/eww/default.nix Executable file → Normal file
View file

0
home/programs/eww/eww.scss Executable file → Normal file
View file

0
home/programs/eww/eww.yuck Executable file → Normal file
View file

0
home/programs/eww/modules/bluetooth.yuck Executable file → Normal file
View file

0
home/programs/eww/modules/bright.yuck Executable file → Normal file
View file

0
home/programs/eww/modules/clock.yuck Executable file → Normal file
View file

0
home/programs/eww/modules/current_win.yuck Executable file → Normal file
View file

0
home/programs/eww/modules/music.yuck Executable file → Normal file
View file

0
home/programs/eww/modules/net.yuck Executable file → Normal file
View file

0
home/programs/eww/modules/sys.yuck Executable file → Normal file
View file

0
home/programs/eww/modules/variables.yuck Executable file → Normal file
View file

0
home/programs/eww/modules/volume.yuck Executable file → Normal file
View file

0
home/programs/eww/modules/workspaces.yuck Executable file → Normal file
View file

0
home/programs/eww/scripts/airplane Executable file → Normal file
View file

0
home/programs/eww/scripts/battery Executable file → Normal file
View file

0
home/programs/eww/scripts/bluetooth Executable file → Normal file
View file

0
home/programs/eww/scripts/brightness Executable file → Normal file
View file

0
home/programs/eww/scripts/current_win Executable file → Normal file
View file

0
home/programs/eww/scripts/memory Executable file → Normal file
View file

0
home/programs/eww/scripts/music Executable file → Normal file
View file

0
home/programs/eww/scripts/net Executable file → Normal file
View file

0
home/programs/eww/scripts/volume Executable file → Normal file
View file

0
home/programs/eww/scripts/workspaces Executable file → Normal file
View file

0
home/programs/eww/windows/calendar.yuck Executable file → Normal file
View file

0
home/programs/eww/windows/music.yuck Executable file → Normal file
View file

0
home/programs/eww/windows/osd.yuck Executable file → Normal file
View file

0
home/programs/eww/windows/system-menu.yuck Executable file → Normal file
View file

0
home/twitchin.nix Executable file → Normal file
View file

0
home/winlogo.png Executable file → Normal file
View file

Before

Width:  |  Height:  |  Size: 152 KiB

After

Width:  |  Height:  |  Size: 152 KiB

Before After
Before After

0
kdekeys Executable file → Normal file
View file

0
op.pal Executable file → Normal file
View file

0
overlay.nix Executable file → Normal file
View file

0
pal.conf Executable file → Normal file
View file

0
pkgs/bismuth.nix Executable file → Normal file
View file

0
pkgs/coconut.nix Executable file → Normal file
View file

0
pkgs/culr.nix Executable file → Normal file
View file

0
pkgs/default.nix Executable file → Normal file
View file

0
pkgs/everforst-theme.nix Executable file → Normal file
View file

0
pkgs/eww.nix Executable file → Normal file
View file

0
pkgs/git-credential-keepassxc.nix Executable file → Normal file
View file

0
pkgs/glpaper.nix Executable file → Normal file
View file

0
pkgs/gruvbox-gtk-theme.nix Executable file → Normal file
View file

0
pkgs/gruvbox-kvantum.nix Executable file → Normal file
View file

0
pkgs/headscale-ui.nix Executable file → Normal file
View file

0
pkgs/hyprland-system76-scheduler-hook.sh Executable file → Normal file
View file

0
pkgs/hyprland-system76-scheduler-integration.nix Executable file → Normal file
View file

0
pkgs/kanagawa-icons.nix Executable file → Normal file
View file

0
pkgs/kanagawa-theme.nix Executable file → Normal file
View file

0
pkgs/kwin-system76-scheduler-integration.nix Executable file → Normal file
View file

0
pkgs/lemurs.nix Executable file → Normal file
View file

0
pkgs/ly.nix Executable file → Normal file
View file

0
pkgs/pygments.nix Executable file → Normal file
View file

0
pkgs/rose-pine-icons.nix Executable file → Normal file
View file

0
pkgs/rose-pine-theme.nix Executable file → Normal file
View file

0
pkgs/simplewaita-gtk.nix Executable file → Normal file
View file

0
reflector.nix Executable file → Normal file
View file

0
rice.nix Executable file → Normal file
View file

0
sway-nvidia.patch Executable file → Normal file
View file

0
system/adrift.nix Executable file → Normal file
View file

0
system/cachix.nix Executable file → Normal file
View file

0
system/cachix/nix-community.nix Executable file → Normal file
View file

0
system/configuration.nix Executable file → Normal file
View file

0
system/overlay.nix Executable file → Normal file
View file

0
system/quiver.nix Executable file → Normal file
View file

0
top n bottom.layout.latte Executable file → Normal file
View file

0
wallpaper.png Executable file → Normal file
View file

Before

Width:  |  Height:  |  Size: 7.5 MiB

After

Width:  |  Height:  |  Size: 7.5 MiB

Before After
Before After

Some files were not shown because too many files have changed in this diff Show more