mirror of
https://github.com/agresdominik/dotfiles.git
synced 2026-07-21 16:00:55 +00:00
19 lines
413 B
Plaintext
19 lines
413 B
Plaintext
# Start on boot
|
|
if [[ -z $DISPLAY ]] && [[ $(tty) == /dev/tty1 ]]; then
|
|
exec sway
|
|
fi
|
|
|
|
# -- Env Paths ---
|
|
export GOPATH=$HOME/.local/go/
|
|
export GOBIN=$HOME/.local/go/bin
|
|
export PATH=$PATH:$GOBIN
|
|
export PATH="$HOME/.local/bin:$PATH"
|
|
|
|
# Shell function to turn on pc
|
|
pc() {
|
|
ssh -T root@192.168.0.254 'bash /root/wakeup.sh'
|
|
}
|
|
|
|
alias copy='wl-copy --type text/plain <'
|
|
alias copyimg='wl-copy --type image/png <'
|