1
0

Compare commits

..

No commits in common. "527490d70967087c29552c8bfae7d1f75f64770a" and "3d4b9ff97e1487626d66080f0674986a05f7088a" have entirely different histories.

4 changed files with 2 additions and 18 deletions

View File

@ -1,7 +0,0 @@
if [ -f "${ENV}" ]; then
source "${ENV}"
elif [ -f "~/.env" ]; then
source "~/.env"
elif [ -f "~/.shrc" ]; then
source "~/.shrc"
fi

View File

@ -8,7 +8,6 @@ set $right l
# Programs
set $term foot
set $menu bemenu-run
set $lock imv-wayland -f # I'm too lazy to package swaylock
# Output settings
output * bg ~/.local/share/backgrounds/pocketchip.png fill
@ -26,7 +25,6 @@ input "1:1:1c25000.rtp" {
# Terminal and launcher controls
bindsym $mod+Return exec $term
bindsym $mod+D exec $menu
bindsym $mod+M exec $lock
# Window controls
bindsym $mod+Shift+q kill

5
.env
View File

@ -1,5 +0,0 @@
export PS1='$USER@$HOSTNAME \w \$ '
alias ls='ls -F'
if ! command -v doas &> /dev/null; then
alias doas=sudo
fi

View File

@ -1,8 +1,6 @@
export ENV=~/.env
export PS1='$USER@$HOSTNAME \w \$ '
export ENV=~/.shrc
export PATH=~/bin:$PATH
export EDITOR=vim
export GIT_EDITOR='vim -c ":set ft=gitcommit"'
export BEMENU_OPTS="--nb '#000000' --hb '#000000' --tb '#000000' --fb '#000000' --hf '#ff79c6' --tf '#ff79c6' --fn 'monospace 8'"
export QT_QPA_PLATFORM=wayland
source "${ENV}"
welcome