1
0
Fork 0

Compare commits

...

2 Commits

Author SHA1 Message Date
Ryan Fox 527490d709 Add welcome text 2022-04-23 07:16:48 +00:00
Ryan Fox a3525f29cc Block out screen with imv 2022-01-17 06:14:12 +00:00
4 changed files with 18 additions and 2 deletions

7
.bashrc Normal file
View File

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

View File

@ -8,6 +8,7 @@ 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
@ -25,6 +26,7 @@ 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 Normal file
View File

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

View File

@ -1,6 +1,8 @@
export PS1='$USER@$HOSTNAME \w \$ '
export ENV=~/.shrc
export ENV=~/.env
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