diff --git a/hypr/.config/hypr/hyprland.conf b/hypr/.config/hypr/hyprland.conf index 1dd4ec9..4e0ac4b 100755 --- a/hypr/.config/hypr/hyprland.conf +++ b/hypr/.config/hypr/hyprland.conf @@ -304,7 +304,7 @@ bind = $mainMod SHIFT, SPACE, exec, nwg-drawer bind = $mainMod, P, pseudo, # dwindle bind = $mainMod, J, togglesplit, # dwindle bind = $mainMod, I, exec, firefox & -bind = $mainMod, n, exec, hyprltm-net +bind = $mainMod, n, exec, ~/.local/bin/hyprltm-net # Move focus with mainMod + WASD or Vim-style bind = $mainMod, a, movefocus, l diff --git a/term/.bashrc b/term/.bashrc new file mode 100644 index 0000000..f8c12b4 --- /dev/null +++ b/term/.bashrc @@ -0,0 +1,11 @@ +# +# ~/.bashrc +# + +# If not running interactively, don't do anything +[[ $- != *i* ]] && return + +alias ls='ls --color=auto' +alias grep='grep --color=auto' +PS1='[\u@\h \W]\$ ' +export PATH="$HOME/.local/bin:$PATH"