diff --git a/.dotter/global.toml b/.dotter/global.toml index 2439142..8f8a370 100644 --- a/.dotter/global.toml +++ b/.dotter/global.toml @@ -77,6 +77,7 @@ cargo.packages = [] "config/swappy" = "~/.config/swappy" "config/waybar" = "~/.config/waybar/" "config/rofi" = "~/.config/rofi" +"config/wpaperd" = "~/.config/wpaperd" [hyprland] depends = ["wm"] diff --git a/config/hypr/hyprland.conf b/config/hypr/hyprland.conf index 26d4308..3ffbb3c 100644 --- a/config/hypr/hyprland.conf +++ b/config/hypr/hyprland.conf @@ -11,6 +11,7 @@ # ╰──────────────────────────────────────────────────────────╯ # ── System apps ───────────────────────────────────────────────────────── +exec-once = wpaperd exec-once = pipewire exec-once = udieskie exec-once =/ usr/libexec/polkit-gnome-authentication-agent-1 diff --git a/config/waybar/config.jsonc b/config/waybar/config.jsonc index 14ea8c9..f08595e 100644 --- a/config/waybar/config.jsonc +++ b/config/waybar/config.jsonc @@ -12,6 +12,7 @@ "modules-left": ["hyprland/workspaces"], "modules-center": ["clock"], "modules-right": [ + "tray", "idle_inhibitor", "network", "bluetooth", @@ -122,9 +123,11 @@ "format": " Disabled", "on-click": "blueman-manager &" }, - "custom/power": { "format": "", "on-click": "~/.config/rofi/powermenu/type-4/powermenu.sh" + }, + "tray": { + "show-passive-items": true } } diff --git a/config/wpaperd/config.toml b/config/wpaperd/config.toml new file mode 100644 index 0000000..18fdef4 --- /dev/null +++ b/config/wpaperd/config.toml @@ -0,0 +1,7 @@ +[default] +duration = "1m" +mode = "center" +sorting = "ascending" + +[any] +path = "~/Pictures/Wallpapers/" diff --git a/config/zsh/zshrc b/config/zsh/zshrc index 97253dc..e4aadc3 100644 --- a/config/zsh/zshrc +++ b/config/zsh/zshrc @@ -7,7 +7,7 @@ # │ Preoload stuff │ # ╰──────────────────────────────────────────────────────────╯ -export $HOME/.zprofile +source $HOME/.zprofile # Set the directory we want to store zinit and plugins ZINIT_HOME="${XDG_DATA_HOME:-${HOME}/.local/share}/zinit"