This commit is contained in:
Mira Velturu 2023-11-21 22:08:12 -05:00
parent 7f81c97591
commit a0880f22e9
12 changed files with 491 additions and 480 deletions

@ -1 +1 @@
Subproject commit 11c9abf47d291ebd42e1dd7563a73190effe2d10 Subproject commit d3ec619e7d964038cfb480729ca389d714a1af6a

View file

@ -1,3 +0,0 @@
[[ -f ~/.bashrc ]] && . ~/.bashrc
source /home/mira/.config/broot/launcher/bash/br

View file

@ -1,4 +1,4 @@
#!/bin/sh #!/usr/bin/env sh
# ~/.profile: executed by the command interpreter for login shells. # ~/.profile: executed by the command interpreter for login shells.
# This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login # This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login
# exists. # exists.
@ -9,74 +9,87 @@
# for ssh logins, install and configure the libpam-umask package. # for ssh logins, install and configure the libpam-umask package.
#umask 022 #umask 022
# XDG Base Dirs #################
XDG_DATA_HOME="$HOME/.local/share" # XDG Base Dirs #
XDG_CONFIG_HOME="$HOME/.config" #################
XDG_STATE_HOME="$HOME/.local/state"
XDG_CACHE_HOME="$HOME/.cache" export XDG_DATA_HOME="$HOME/.local/share"
export XDG_CONFIG_HOME="$HOME/.config"
export XDG_STATE_HOME="$HOME/.local/state"
export XDG_CACHE_HOME="$HOME/.cache"
#################
# XDG User Dirs #
#################
source "$XDG_CONFIG_HOME/user-dirs.dirs" source "$XDG_CONFIG_HOME/user-dirs.dirs"
EDITOR=nvim
OPENER=xdg-open
# [[ "$TERM_PROGRAM" = "vscode" ]] && . "$(code --locate-shell-integration-path $0)"
# set PATH so it includes user's private bin if it exists ########################
if [ -d "$HOME/bin" ]; then # Default file viewers #
PATH="$HOME/bin:$PATH" ########################
fi
# set PATH so it includes user's private bin if it exists export EDITOR=nvim
if [ -d "$HOME/.local/bin" ]; then export PAGER=moar
PATH="$HOME/.local/bin:$PATH" export OPENER=xdg-open
fi
# Source Cargo Environment #######
if [[ -f "$HOME/.cargo/env" ]]; then # IME #
. "$HOME/.cargo/env" #######
elif [[ -f ~/.local/share/cargo/env ]]; then
source ~/.local/share/cargo/env
fi
# Source Nix Environment
if [ -e "$HOME"/.nix-profile/etc/profile.d/nix.sh ]; then
. "$HOME"/.nix-profile/etc/profile.d/nix.sh
# else
# echo "If this doesn't work, comment out this part of .zshenv"
# sh <(curl -L https://nixos.org/nix/install) --no-daemon;
fi
# Add Ruby GTK_IM_MODULE=fcitx
#[ "${PATH#*"$HOME"/.local/share/gem/ruby/*/bin:}" = "$PATH" ] && export PATH="$HOME/.local/share/gem/ruby/*/bin:$PATH" QT_IM_MODULE=fcitx
XMODIFIERS=@im=fcitx
# User bin folder
[ "${PATH#*"$HOME"/.local/bin:}" = "$PATH" ] && export PATH="$HOME/.local/bin:$PATH"
# add nodejs ################################
# [ "${PATH#*"$HOME"/.yarn/bin:$HOME/.config/yarn/global/node_modules/.bin:}" = "$PATH" ] && export PATH="$HOME/.yarn/bin:$HOME/.config/yarn/global/node_modules/.bin:$PATH" # pls use the goddamn xdg dirs #
################################
# add go
[ "${PATH#*"$HOME"/go/bin:}" = "$PATH" ] && export PATH="$HOME/go/bin:$PATH"
# Set PATH, MANPATH, etc., for Homebrew.
[ -e /home/linuxbrew/.linuxbrew/bin/brew ] && eval $(/home/linuxbrew/.linuxbrew/bin/brew shellenv)
# pnpm
export PNPM_HOME="$XDG_DATA_HOME/pnpm"
[ "${PATH#*$PNPM_HOME:}" = "$PATH" ] && export PATH="$PNPM_HOME:$PATH"
# npm
export NPM_CONFIG_PREFIX="$XDG_DATA_HOME/npm-global"
[ "${PATH#*$NPM_CONFIG_PREFIX/bin:}" = "$PATH" ] && export PATH="$NPM_CONFIG_PREFIX/bin:$PATH"
# Make Cargo install to user bin directory
export CARGO_HOME="$XDG_DATA_HOME/cargo"
export CARGO_INSTALL_ROOT="$HOME/.local"
export GNUPGHOME="$XDG_DATA_HOME/gnupg" export GNUPGHOME="$XDG_DATA_HOME/gnupg"
# If you use non-default GnuPG Home directory, you will need to edit all # If you use non-default GnuPG Home directory, you will need to edit all
# socket files to use the values of gpgconf --list-dirs. # socket files to use the values of gpgconf --list-dirs.
# If you set your SSH_AUTH_SOCK manually, keep in mind that your socket # If you set your SSH_AUTH_SOCK manually, keep in mind that your socket
# location may be different if you are using a custom GNUPGHOME # location may be different if you are using a custom GNUPGHOME
export LESSHISTFILE="$XDG_STATE_HOME/less/history" export PNPM_HOME="$XDG_DATA_HOME/pnpm"
export NPM_CONFIG_PREFIX="$XDG_DATA_HOME/npm-global"
alias wget=wget --hsts-file="$XDG_DATA_HOME/wget-hsts"
export CARGO_HOME="$XDG_DATA_HOME/cargo"
export CARGO_INSTALL_ROOT="$HOME/.local"
export GTK2_RC_FILES="$XDG_CONFIG_HOME"/gtk-2.0/gtkrc
export INPUTRC="$XDG_CONFIG_HOME/readline/inputrc" export INPUTRC="$XDG_CONFIG_HOME/readline/inputrc"
export LESSHISTFILE="$XDG_STATE_HOME/less/history"
export NPM_CONFIG_USERCONFIG="$XDG_CONFIG_HOME"/npm/npmrc
export PARALLEL_HOME="$XDG_CONFIG_HOME"/parallel
export RUSTUP_HOME="$XDG_DATA_HOME"/rustup
export WINEPREFIX="$XDG_DATA_HOME"/wine
export XCURSOR_PATH=/usr/share/icons:$XDG_DATA_HOME/icons
###############
# SET UP PATH #
###############
# nix
if [ -e "$HOME"/.nix-profile/etc/profile.d/nix.sh ]; then
. "$HOME"/.nix-profile/etc/profile.d/nix.sh
fi
# User bin folder
[ "${PATH#*"$HOME"/.local/bin:}" = "$PATH" ] && export PATH="$HOME/.local/bin:$PATH"
# go
[ "${PATH#*"$HOME"/go/bin:}" = "$PATH" ] && export PATH="$HOME/go/bin:$PATH"
# homebrew
[ -e /home/linuxbrew/.linuxbrew/bin/brew ] && eval $(/home/linuxbrew/.linuxbrew/bin/brew shellenv)
# pnpm
[ "${PATH#*$PNPM_HOME:}" = "$PATH" ] && export PATH="$PNPM_HOME:$PATH"
# npm
[ "${PATH#*$NPM_CONFIG_PREFIX/bin:}" = "$PATH" ] && export PATH="$NPM_CONFIG_PREFIX/bin:$PATH"
# cargo
if [[ -f "$CARGO_HOME/env" ]]; then
. "$CARGO_HOME/env"
elif [[ -f ~/.local/share/cargo/env ]]; then
. ~/.local/share/cargo/env
fi

View file

@ -6,4 +6,4 @@
export ZSH_DISABLE_COMPFIX=true export ZSH_DISABLE_COMPFIX=true
# Load .profile # Load .profile
[[ -f ~/.env ]] && . ~/.env [[ -f ~/.profile ]] && . ~/.profile

View file

@ -131,7 +131,7 @@ font:
# - (macOS) Menlo # - (macOS) Menlo
# - (Linux/BSD) monospace # - (Linux/BSD) monospace
# - (Windows) Consolas # - (Windows) Consolas
family: "MonispaceNe NFP" family: "MonaspiceNe NF"
# The `style` can be specified to pick a specific face. # The `style` can be specified to pick a specific face.
style: Regular style: Regular
@ -200,8 +200,8 @@ font:
colors: colors:
# Default colors # Default colors
primary: primary:
background: '#010206' background: "#010206"
foreground: '#EBF6FF' foreground: "#EBF6FF"
# Bright and dim foreground colors # Bright and dim foreground colors
# #
@ -209,8 +209,8 @@ colors:
# present. If the bright foreground color is not set, or # present. If the bright foreground color is not set, or
# `draw_bold_text_with_bright_colors` is `false`, the normal foreground # `draw_bold_text_with_bright_colors` is `false`, the normal foreground
# color will be used. # color will be used.
dim_foreground: '#BFBFC0' dim_foreground: "#BFBFC0"
bright_foreground: '#F0F2FF' bright_foreground: "#F0F2FF"
# Cursor colors # Cursor colors
# #
@ -279,8 +279,8 @@ colors:
# hyperlink URI preview, etc. # hyperlink URI preview, etc.
# #
footer_bar: footer_bar:
background: '#0B5393' background: "#0B5393"
foreground: '#EBF6FF' foreground: "#EBF6FF"
# Selection colors # Selection colors
# #
@ -294,25 +294,25 @@ colors:
# Normal colors # Normal colors
normal: normal:
black: '#1E1B30' black: "#1E1B30"
red: '#A04558' red: "#A04558"
green: '#6FA47E' green: "#6FA47E"
yellow: '#CCB700' yellow: "#CCB700"
blue: '#334773' blue: "#334773"
magenta: '#a34a78' magenta: "#a34a78"
cyan: '#2A98B1' cyan: "#2A98B1"
white: '#808082' white: "#808082"
# Bright colors # Bright colors
bright: bright:
black: '#2a2644' black: "#2a2644"
red: '#f5a9b8' red: "#f5a9b8"
green: '#98db95' green: "#98db95"
yellow: '#ffe70a' yellow: "#ffe70a"
blue: '#445f9b' blue: "#445f9b"
magenta: '#ee5e95' magenta: "#ee5e95"
cyan: '#5bcefa' cyan: "#5bcefa"
white: '#bfbfc0' white: "#bfbfc0"
# Dim colors # Dim colors
# #
@ -344,7 +344,6 @@ colors:
# the default background. When set to `true` all cells will be transparent # the default background. When set to `true` all cells will be transparent
# regardless of their background color. # regardless of their background color.
#transparent_background_colors: false #transparent_background_colors: false
# Bell # Bell
# #
# The bell is rung every time the BEL control character is received. # The bell is rung every time the BEL control character is received.

View file

@ -320,7 +320,7 @@
#default_icon = /path/to/icon #default_icon = /path/to/icon
[urgency_normal] [urgency_normal]
background = "#1E1B30" background = "#1E1B30BF"
foreground = "#EBF6ff" foreground = "#EBF6ff"
timeout = 10 timeout = 10
# Icon for notifications with normal urgency, uncomment to enable # Icon for notifications with normal urgency, uncomment to enable

@ -1 +1 @@
Subproject commit a1fadfc52546b6b295d9e439a17d54da460e818b Subproject commit c40f0d7ada08c1219f52c294b3d9024feed83c93

View file

@ -12,7 +12,7 @@ cmd open ${{
# trash # trash
cmd trash %trash-put $fx cmd trash %trash-put $fx
map dd trash map x trash
map DD delete map DD delete

View file

@ -1 +0,0 @@
/home/ajay/.cache/wal/colors-rofi-dark.rasi

View file

@ -45,3 +45,6 @@ exec_always --no-startup-id /usr/bin/lxqt-policykit-agent
#notif daemon #notif daemon
exec_always swhks & exec_always swhks &
exec_always dunst & exec_always dunst &
exec nm-tray
exec fcitx5

View file

@ -15,7 +15,7 @@ font pango:Atkinson Hyperlegible bold 9
bar { bar {
status_command i3blocks -c /home/mira/.config/sway/i3blocks.conf status_command i3blocks -c /home/mira/.config/sway/i3blocks.conf
font pango:Monaspace Neon, CommitMono Nerd Font, FontAwesome 9 font pango:MonaspiceNe NF, CommitMono Nerd Font, FontAwesome 9
#mode hide #mode hide
colors { colors {
background $inactive background $inactive

View file

@ -40,10 +40,10 @@ super + tab
rofi -show window -show-icons -theme lunar-witch rofi -show window -show-icons -theme lunar-witch
print print
flameshot full -c -p "$XDG_PICTURES_DIR/screenshots/" flameshot full -c -p "/home/mira/Pictures/screenshots/"
shift + print shift + print
flameshot gui -s -c -p "$XDG_PICTURES_DIR/screenshots/" flameshot gui -s -c -p "/home/mira/Pictures/screenshots/"
ctrl + print ctrl + print
flameshot gui -c -p "$XDG_PICTURES_DIR/screenshots/" flameshot gui -c -p "/home/mira/Pictures/screenshots/"