diff options
author | Joe Rayhawk <jrayhawk@fairlystable.org> | 2024-12-16 16:42:57 -0800 |
---|---|---|
committer | Joe Rayhawk <jrayhawk@fairlystable.org> | 2024-12-16 16:42:57 -0800 |
commit | eadbd6ade8b9efdb7909c4fa2ed2baad4dee35c1 (patch) | |
tree | 347c93d47c28947c74e9924db21d4266338d825b /.bash_profile | |
parent | 6803f03d8cb9f9a1afc731ebf2b3f3d3f5647e87 (diff) | |
download | jrayhawk-dotfiles-eadbd6ade8b9efdb7909c4fa2ed2baad4dee35c1.tar.gz jrayhawk-dotfiles-eadbd6ade8b9efdb7909c4fa2ed2baad4dee35c1.zip |
add asoundrc configs
Diffstat (limited to '.bash_profile')
-rw-r--r-- | .bash_profile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.bash_profile b/.bash_profile index 7ab934c..1739afe 100644 --- a/.bash_profile +++ b/.bash_profile @@ -17,9 +17,12 @@ export SSH_ASKPASS_REQUIRE=force export TERM=xterm-256color export WLR_DRM_NO_MODIFIERS=1 # set to 1 to always allocate planes without modifiers, this can fix certain modeset failures because of bandwidth restrictions. +export HOSTNAME="$(hostname -s)" +#systemctl --user set-environment HOSTNAME="$HOSTNAME" + alias startx='startx -- vt7 & sleep 2; logout' alias startsway='(sleep 1; exec systemd-cat --identifier=sway sway) & logout' -alias starthypr='(sleep 1; exec systemd-cat --identifier=hyprland hyprland --config ~/.config/hypr/$( hostname -s )/hyprland.conf) & logout' +alias starthypr='(sleep 1; exec systemd-cat --identifier=hyprland hyprland --config ~/.config/hypr/"$HOSTNAME"/hyprland.conf) & logout' alias discord='firejail discord' alias firefox='firejail firefox' alias zoom='firejail zoom' |