]> git.huck.website - zsh.git/commitdiff
added: peacock tweaks peacock
authorHuck Boles <huck@huck.website>
Thu, 16 May 2024 02:31:34 +0000 (19:31 -0700)
committerHuck Boles <huck@huck.website>
Thu, 16 May 2024 02:31:34 +0000 (19:31 -0700)
.zprofile
include/aliases.zsh

index 35e9ccf94841174632cc12d995378dd55e0c1260..266dc67fd5db3ddf4a70eb3611ff69a871cf7967 100644 (file)
--- a/.zprofile
+++ b/.zprofile
@@ -1,4 +1,14 @@
-unset XDG_RUNTIME_DIR
-export XDG_RUNTIME_DIR=$(mktemp -d /tmp/$(id -u)-runtime-dir.XXX)
+# start wayland if isn't already running
+if [[ -z "${WAYLAND_DISPLAY}" ]] && [[ "${XDG_VTNR}" -eq 1 ]]; then
 
-[[ -t 0 && $(tty) == /dev/tty1 && ! $DISPLAY ]] && exec startx
+    # setup runtime directory if it's not already
+    if test -z "$XDG_RUNTIME_DIR"; then
+        export XDG_RUNTIME_DIR=$(mktemp -d /tmp/$(id -u)-runtime-dir.XXX)
+    fi
+
+    # enable wayland for firefox
+    export MOZ_ENABLE_WAYLAND=1
+
+    # start sway
+    dbus-launch sway
+fi
index 24607384d0e9fc62306c5bdfbe01b3272650186e..b9fa3753a544758b198a2de2219f12136490f852 100644 (file)
@@ -29,7 +29,7 @@ alias zc='cd;clear'
 alias cd='z '
 alias rename='perl-rename'
 
-alias make='make -j16 -l6 CFLAGS="-march=bdver1"'
+alias make='make -j8 -l9 '
 alias dust='dust -rb'
 
 alias ls='lsd'
@@ -48,6 +48,3 @@ alias tattach='tmux attach-session -t'
 
 # config aliases
 alias wget='wget --hsts-file="$XDG_DATA_HOME/wget-hsts"'
-alias xrdb='xrdb -load "$XDG_CONFIG_HOME/X11/xresources"'
-alias background='feh --bg-fill --no-fehbg --randomize /home/huck/drive/library/photos/background'
-alias nvidia-settings='nvidia-settings --config=$XDG_CONFIG_HOME/nvidia/settings'