Renamed dotfiles folder to assets

This commit is contained in:
Random936
2026-02-13 15:17:51 -05:00
parent b062663705
commit f3ea0b7922
61 changed files with 24 additions and 24 deletions

View File

@@ -24,16 +24,16 @@
]; ];
home.file = { home.file = {
".Xresources".source = ../dotfiles/.Xresources; ".Xresources".source = ../assets/.Xresources;
".scripts/brightness.sh".source = ../dotfiles/.scripts/brightness.sh; ".scripts/brightness.sh".source = ../assets/.scripts/brightness.sh;
".scripts/autostart_desktop.sh".source = ../dotfiles/.scripts/autostart_desktop.sh; ".scripts/autostart_desktop.sh".source = ../assets/.scripts/autostart_desktop.sh;
".screenlayout/launch.sh".source = ../dotfiles/.screenlayout/launch.sh; ".screenlayout/launch.sh".source = ../assets/.screenlayout/launch.sh;
".screenlayout/wallpapers.sh".source = ../dotfiles/.screenlayout/wallpapers.sh; ".screenlayout/wallpapers.sh".source = ../assets/.screenlayout/wallpapers.sh;
".screenlayout/polybar.sh".source = ../dotfiles/.screenlayout/polybar.sh; ".screenlayout/polybar.sh".source = ../assets/.screenlayout/polybar.sh;
".config/i3/config".source = ../dotfiles/.config/i3/config; ".config/i3/config".source = ../assets/.config/i3/config;
".config/rofi/config.rasi".source = ../dotfiles/.config/rofi/config.rasi; ".config/rofi/config.rasi".source = ../assets/.config/rofi/config.rasi;
".config/polybar/config.ini".source = ../dotfiles/.config/polybar/config.ini; ".config/polybar/config.ini".source = ../assets/.config/polybar/config.ini;
".config/alacritty/alacritty.toml".source = ../dotfiles/.config/alacritty/alacritty.toml; ".config/alacritty/alacritty.toml".source = ../assets/.config/alacritty/alacritty.toml;
".config/qutebrowser/config.py".source = ../dotfiles/.config/qutebrowser/config.py; ".config/qutebrowser/config.py".source = ../assets/.config/qutebrowser/config.py;
}; };
} }

View File

@@ -1,3 +1,3 @@
{ ... }: { { ... }: {
home.file.".aerospace.toml".source = ../../dotfiles/.aerospace.toml; home.file.".aerospace.toml".source = ../../assets/.aerospace.toml;
} }

View File

@@ -1,10 +1,10 @@
{ ... }: { { ... }: {
home.file.".config/sketchybar/plugins".source = ../../dotfiles/.config/sketchybar/plugins; home.file.".config/sketchybar/plugins".source = ../../assets/.config/sketchybar/plugins;
home.file.".config/sketchybar/plugins/volume.sh".source = ../../dotfiles/.config/sketchybar/plugins/volume.sh; home.file.".config/sketchybar/plugins/volume.sh".source = ../../assets/.config/sketchybar/plugins/volume.sh;
home.file.".config/sketchybar/plugins/space.sh".source = ../../dotfiles/.config/sketchybar/plugins/space.sh; home.file.".config/sketchybar/plugins/space.sh".source = ../../assets/.config/sketchybar/plugins/space.sh;
home.file.".config/sketchybar/plugins/front_app.sh".source = ../../dotfiles/.config/sketchybar/plugins/front_app.sh; home.file.".config/sketchybar/plugins/front_app.sh".source = ../../assets/.config/sketchybar/plugins/front_app.sh;
home.file.".config/sketchybar/plugins/aerospace.sh".source = ../../dotfiles/.config/sketchybar/plugins/aerospace.sh; home.file.".config/sketchybar/plugins/aerospace.sh".source = ../../assets/.config/sketchybar/plugins/aerospace.sh;
home.file.".config/sketchybar/plugins/clock.sh".source = ../../dotfiles/.config/sketchybar/plugins/clock.sh; home.file.".config/sketchybar/plugins/clock.sh".source = ../../assets/.config/sketchybar/plugins/clock.sh;
home.file.".config/sketchybar/plugins/battery.sh".source = ../../dotfiles/.config/sketchybar/plugins/battery.sh; home.file.".config/sketchybar/plugins/battery.sh".source = ../../assets/.config/sketchybar/plugins/battery.sh;
home.file.".config/sketchybar/sketchybarrc".source = ../../dotfiles/.config/sketchybar/sketchybarrc; home.file.".config/sketchybar/sketchybarrc".source = ../../assets/.config/sketchybar/sketchybarrc;
} }

View File

@@ -4,6 +4,6 @@ in {
home.packages = with pkgs; [ tmux ]; home.packages = with pkgs; [ tmux ];
home.file = { home.file = {
".tmux/plugins/tpm".source = "${mypkgs.tpm}"; ".tmux/plugins/tpm".source = "${mypkgs.tpm}";
".tmux.conf".source = ../../dotfiles/.tmux.conf; ".tmux.conf".source = ../../assets/.tmux.conf;
}; };
} }

View File

@@ -75,12 +75,12 @@
plugins = [ plugins = [
{ {
name = "custom-functions"; name = "custom-functions";
src = ../../dotfiles; src = ../../assets;
file = ".functions.zsh"; file = ".functions.zsh";
} }
{ {
name = "powerlevel10k-config"; name = "powerlevel10k-config";
src = ../../dotfiles; src = ../../assets;
file = ".p10k.zsh"; file = ".p10k.zsh";
} }
]; ];
@@ -95,6 +95,6 @@
}; };
home.file = { home.file = {
".functions.zsh".source = ../../dotfiles/.functions.zsh; ".functions.zsh".source = ../../assets/.functions.zsh;
}; };
} }