This commit is contained in:
iFargle 2023-08-15 21:12:22 +09:00
parent 999ba9a93f
commit 94b6bacfd9
3 changed files with 10 additions and 6 deletions

View file

@ -3,7 +3,8 @@ Repo for nix configuration files
--- ---
# To Do List # To Do List
* [ ] tmux config / theming * [ ] tmux config / theming
* [ ] regreet config / theming * [ ] regreet config / theming - Icons still broken for some reason
* [ ] mako config / theming
* [ ] waybar config / theming * [ ] waybar config / theming
* [ ] hyprland config / theming * [ ] hyprland config / theming
* [ ] powerline config / theming * [ ] powerline config / theming
@ -19,6 +20,7 @@ Repo for nix configuration files
* [ ] Get function keys working (sound, brightness, etc) * [ ] Get function keys working (sound, brightness, etc)
* [ ] rofi - bitwarden-cli / bitwarden-menu ([Link](https://search.nixos.org/packages?channel=23.05&show=bitwarden-menu&from=0&size=50&sort=relevance&type=packages&query=bitwarden)) * [ ] rofi - bitwarden-cli / bitwarden-menu ([Link](https://search.nixos.org/packages?channel=23.05&show=bitwarden-menu&from=0&size=50&sort=relevance&type=packages&query=bitwarden))
* [ ] Try and submit this as a nixpkg - [Link](https://github.com/SylEleuth/gruvbox-plus-icon-pack) * [ ] Try and submit this as a nixpkg - [Link](https://github.com/SylEleuth/gruvbox-plus-icon-pack)
* [ ] Possibly move away from powerline-go - I want something simpler
--- ---
@ -89,3 +91,4 @@ Repo for nix configuration files
# Other # Other
* Try this - https://yewtu.be/watch?v=61wGzIv12Ds&local=true * Try this - https://yewtu.be/watch?v=61wGzIv12Ds&local=true
* gruvbox-factory - https://github.com/paulopacitti/gruvbox-factory

View file

@ -11,7 +11,7 @@
GTK.application_prefer_dark_theme = true; GTK.application_prefer_dark_theme = true;
GTK.cursor_theme_name = "Adwaita"; GTK.cursor_theme_name = "Adwaita";
GTK.font_name = "Cantarell 16"; GTK.font_name = "Cantarell 16";
GTK.icon_theme_name = "ePapirus-Dark"; GTK.icon_theme_name = "Papirus-Dark";
# GTK.theme_name = "Adwaita"; # GTK.theme_name = "Adwaita";
GTK.theme_name = "Gruvbox-Dark-BL"; GTK.theme_name = "Gruvbox-Dark-BL";
commands.reboot = [ "systemctl" "reboot" ]; commands.reboot = [ "systemctl" "reboot" ];

View file

@ -181,14 +181,15 @@
".config/hypr/start.sh" = { ".config/hypr/start.sh" = {
enable = true; enable = true;
executable = true; executable = true;
text = " text = ''
#!/usr/bin/env bash #!/usr/bin/env bash
swww daemon & swwww init &
swww img /etc/nixos/git/desktops/wallpapers/gruvbox/wallpaper3.jpg & swww img /etc/nixos/git/desktops/wallpapers/gruvbox/wallpaper3.jpg &
nm-applet --indicator & nm-applet --indicator &
waybar & waybar &
mako mako
"; notify-send "Welcome to Hyprland!"
'';
}; };
}; };
} }