removed auto env. kinda dangerous. configs.

This commit is contained in:
iceyrazor 2025-05-24 07:08:53 -05:00
parent 91985fa3bb
commit 1be4f161e3
4 changed files with 7 additions and 5 deletions

View File

@ -94,5 +94,6 @@ note: the pacman install scripts may not be fully what i have as i made this loo
- calcurse - calcurse
# todo # todo
- deploy - add rest of files
- make fully portable version?
- seperate installs into more scripts to have different steps in requirements. probably wont do this - seperate installs into more scripts to have different steps in requirements. probably wont do this

View File

@ -23,6 +23,7 @@ fi
#fi #fi
# . torsocks on # . torsocks on
export DEV_ENV=~
export PROMPT_EOL_MARK="" export PROMPT_EOL_MARK=""
export EDITOR="nvim" export EDITOR="nvim"
# idk which one works # idk which one works
@ -73,6 +74,7 @@ alias ygg="fukn bash -c 'mkdir /var/run/yggdrasil; yggdrasil -useconf < /etc/ygg
alias alvr="WINIT_X11_SCALE_FACTOR=\"1\" /home/iceyrazor/stuff/manual-programs/dontsync/alvr_streamer_linux/bin/alvr_dashboard & disown" alias alvr="WINIT_X11_SCALE_FACTOR=\"1\" /home/iceyrazor/stuff/manual-programs/dontsync/alvr_streamer_linux/bin/alvr_dashboard & disown"
alias obss="obs && obs --enable-media-stream & disown" alias obss="obs && obs --enable-media-stream & disown"
alias get_channel_id="xargs curl -s | grep -Eo 'channel_id=.{0,50}' | sed 's/\".*//g' | fzf | xargs printf \"https://www.youtube.com/feeds/videos.xml?%s\" | xclip -selection clipboard" alias get_channel_id="xargs curl -s | grep -Eo 'channel_id=.{0,50}' | sed 's/\".*//g' | fzf | xargs printf \"https://www.youtube.com/feeds/videos.xml?%s\" | xclip -selection clipboard"
alias dev-run="~/stuff/scripts/iceys-linux-stuffs/run.sh"
alias killa="~/stuff/killall.sh" alias killa="~/stuff/killall.sh"
alias bbackup="~/stuff/scripts/system/backup/backup.sh" alias bbackup="~/stuff/scripts/system/backup/backup.sh"

View File

@ -22,7 +22,7 @@ windowrule = float,title:^(flameshot)
windowrule = move 0 0,title:^(flameshot) windowrule = move 0 0,title:^(flameshot)
windowrule = suppressevent fullscreen,title:^(flameshot) windowrule = suppressevent fullscreen,title:^(flameshot)
exec-once = $HOME/.config/dwm/autostart.sh exec-once = $HOME/.local/bin/system/start_scripts/autostart.sh
exec-once = waybar exec-once = waybar
exec-once = /usr/lib/xdg-desktop-portal & exec-once = /usr/lib/xdg-desktop-portal &
exec-once = dbus-update-activation-environment WAYLAND_DISPLAY XDG_CURRENT_DESKTOP exec-once = dbus-update-activation-environment WAYLAND_DISPLAY XDG_CURRENT_DESKTOP

5
run.sh
View File

@ -1,8 +1,7 @@
#!/bin/bash #!/bin/bash
[ "$DEV_ENV" == "" ] && export DEV_ENV=$HOME
[ ! -d "$DEV_ENV" ] && echo DEV_ENV DOES NOT EXIST && exit 1
echo DEV_ENV "$DEV_ENV" echo DEV_ENV "$DEV_ENV"
[ ! -d "$DEV_ENV" ] && echo DEV_ENV DIRECTORY IS NOT FOUND && exit 1
script_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )" script_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"