diff --git a/.config/hypr/scripts/autostart b/.config/hypr/scripts/autostart index 03d6d3be..9a7382c1 100755 --- a/.config/hypr/scripts/autostart +++ b/.config/hypr/scripts/autostart @@ -34,8 +34,8 @@ dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP systemctl --user import-environment WAYLAND_DISPLAY XDG_CURRENT_DESKTOP & # Launch autostart apps -dex -a -s ~/.config/autostart/ & # Easyeffects and thunderbird -/docs/Documentos/Scripts-Presets/System/openWebServer.sh & # Miniserver for serving a startpage +dex -a -s ~/.config/autostart/ & # Easyeffects and thunderbird +openStartpageServer & # Miniserver for serving a startpage # Launch tui monitors for cpu and gpu kitty --class btop-kitty btop & kitty --class nvtop-kitty nvtop & diff --git a/.local/bin/deleteOrphans b/.local/bin/deleteOrphans new file mode 100755 index 00000000..c86ca083 --- /dev/null +++ b/.local/bin/deleteOrphans @@ -0,0 +1,2 @@ +#!/bin/bash +sudo pacman -Qtdq | sudo pacman -Rns - diff --git a/.local/bin/openStartpageServer b/.local/bin/openStartpageServer new file mode 100755 index 00000000..34dca705 --- /dev/null +++ b/.local/bin/openStartpageServer @@ -0,0 +1,3 @@ +#!/bin/sh +cd ~/Repos/Personal/StartPage/ +python -m http.server 8080