diff --git a/README.md b/README.md index 36d8be0..3f6b6b1 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,8 @@ eg my dotfiles i liked how primagen did his dev environment and deploying of scripts. so im making my own version -> [!NOTE] the pacman install scripts may not be fully what i have as i made this loong after installing software +> [!NOTE] +> the pacman install scripts may not be fully what i have as i made this loong after installing software ## requirements diff --git a/env/.bashrc b/env/.bashrc index e5c6f58..a22a7b7 100644 --- a/env/.bashrc +++ b/env/.bashrc @@ -9,3 +9,6 @@ PS1='\[\e[37;1m\][\[\e[35;1m\]\u\[\e[33m\]@\[\e[35;1m\]\h \[\e[36;1m\]\W\[\e[37; set -o vi ~/.local/bin/system/neoboot.sh source ~/.config/.profile + +eval "$(fzf --bash)" +eval "$(atuin init bash)" diff --git a/env/.config/.profile b/env/.config/.profile index 6c51c38..1888597 100755 --- a/env/.config/.profile +++ b/env/.config/.profile @@ -26,7 +26,7 @@ fi export DEV_ENV=~ export PROMPT_EOL_MARK="" export EDITOR="nvim" -export BROWSER="custom-zen.desktop" +#export BROWSER="custom-zen.desktop" export PREFIX=/usr export PATH="$PATH:$HOME/.cargo/bin:$HOME/.local/bin/blender-4.1.1-linux-x64" export MANPAGER='nvim +Man!' diff --git a/env/.config/dunst/dunstrc b/env/.config/dunst/dunstrc index 0128360..4503410 100644 --- a/env/.config/dunst/dunstrc +++ b/env/.config/dunst/dunstrc @@ -493,3 +493,21 @@ # set_stack_tag = "volume" # # vim: ft=cfg + +[global] +frame_color = "#8aadf4" +separator_color= frame +highlight = "#8aadf4" + +[urgency_low] +background = "#24273a" +foreground = "#cad3f5" + +[urgency_normal] +background = "#24273a" +foreground = "#cad3f5" + +[urgency_critical] +background = "#24273a" +foreground = "#cad3f5" +frame_color = "#f5a97f" diff --git a/env/.config/tmux/tmux.conf b/env/.config/tmux/tmux.conf index a668637..b3702ba 100755 --- a/env/.config/tmux/tmux.conf +++ b/env/.config/tmux/tmux.conf @@ -2,9 +2,6 @@ set -g default-terminal "screen-256color" set -g terminal-overrides 'screen*:colors=256' -set -g default-shell /bin/zsh -set -g default-command /bin/zsh - set -gq allow-passthrough on set -g visual-activity off diff --git a/env/.config/wezterm/wezterm.lua b/env/.config/wezterm/wezterm.lua index 48a053b..f75304f 100755 --- a/env/.config/wezterm/wezterm.lua +++ b/env/.config/wezterm/wezterm.lua @@ -2,7 +2,10 @@ local wezterm = require 'wezterm' local colors= require 'colors' local config = {} -config.default_prog = { 'zsh', '-l' } --config.font = wezterm.font 'Classic Console' config.font_size = 15 config.font = wezterm.font 'Source Code Pro' +--config.font = wezterm.font 'Classic Console' config.font_size = 15 config.font = wezterm.font 'Source Code Pro' +config.set_environment_variables = { + wezterm = 'yes', +} config.enable_tab_bar = false config.font = wezterm.font_with_fallback { diff --git a/env/.local/bin/scripts/backup/backup-tol b/env/.local/bin/scripts/backup/backup-tol index 284bdf3..abe0bfe 100755 --- a/env/.local/bin/scripts/backup/backup-tol +++ b/env/.local/bin/scripts/backup/backup-tol @@ -24,6 +24,4 @@ exclude="--exclude stream.sh --exclude node_modules --exclude **/target" fsynca -printf "==CC-survival unsynced\n\n" - fsyncb diff --git a/env/.local/bin/scripts/backup/bbackup b/env/.local/bin/scripts/backup/bbackup index f5674f0..f13f7a7 100755 --- a/env/.local/bin/scripts/backup/bbackup +++ b/env/.local/bin/scripts/backup/bbackup @@ -15,7 +15,7 @@ fsyncb () { fi } -syncfile="stuff .surf/styles .config/eDEX-UI/ .gnupg .ssh .local/bin/lf-gadgets .config/FreeTube .config/wlxoverlay .config/newsboat .config/zsh .config/vesktop/themes .keepass .config/Pinta .config/cmus .config/cava .local/share/applications/custom .local/share/osu" +syncfile="stuff .surf/styles .config/eDEX-UI/ .gnupg .ssh .local/bin/lf-gadgets .config/FreeTube .config/wlxoverlay .config/newsboat .config/zsh .config/vesktop/themes .keepass .config/Pinta .config/cmus .config/cava .local/share/applications/custom .local/share/osu .librewolf" target="/home/iceyrazor/mnt-backups/LINUX FILES/home/iceyrazor" exclude="--exclude node_modules --exclude node_modules_23 --exclude **/target --exclude LinVAM/pyenv" diff --git a/env/.zshrc b/env/.zshrc index 8ffbb6c..af978ae 100755 --- a/env/.zshrc +++ b/env/.zshrc @@ -4,8 +4,11 @@ ~/.local/bin/system/neoboot.sh -if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then - source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" +if [[ "$wezterm" == "yes" ]]; then + if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then + source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" + fi + source ~/.config/zsh/powerlevel10k/powerlevel10k.zsh-theme fi # Lines configured by zsh-newuser-install @@ -37,7 +40,6 @@ source <(fzf --zsh) source ~/.config/.profile #bash --login -i -c 'source ~/.profile' -source ~/.config/zsh/powerlevel10k/powerlevel10k.zsh-theme # bindkey -a h backward-char # bindkey -a i forward-char diff --git a/runs-all/get-reqs-arch/tools.sh b/runs-all/get-reqs-arch/tools.sh index 5fa807f..2c519b3 100755 --- a/runs-all/get-reqs-arch/tools.sh +++ b/runs-all/get-reqs-arch/tools.sh @@ -1 +1,2 @@ $sudo pacman -S --noconfirm zsh bat ntfs-3g inetutils doas atuin gvfs-mtp btop htop wezterm rxvt-unicode lf ripgrep rofi-wayland networkmanager +$aurm -S librewolf-bin diff --git a/runs-all/mimes.sh b/runs-all/mimes.sh index fa5903a..c6f4114 100755 --- a/runs-all/mimes.sh +++ b/runs-all/mimes.sh @@ -2,10 +2,10 @@ echo SETTING MIMES unset BROWSER -xdg-mime default zen.desktop application/pdf +xdg-settings set default-web-browser librewolf.desktop +xdg-mime default librewolf.desktop application/pdf xdg-mime default pinta.desktop image/jpeg xdg-mime default pinta.desktop image/png xdg-mime default pinta.desktop image/webp xdg-mime default pinta.desktop image/gif -xdg-settings set default-web-browser custom-zen.desktop echo --------