forked from Shinonome/dots-hyprland
Add optional autostart on tty scripts
This commit is contained in:
@@ -0,0 +1,5 @@
|
|||||||
|
# Auto start Hyprland on tty1
|
||||||
|
if test -z "$DISPLAY" ;and test "$XDG_VTNR" -eq 1
|
||||||
|
mkdir -p ~/.cache
|
||||||
|
exec Hyprland > ~/.cache/hyprland.log ^&1
|
||||||
|
end
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
# Auto start Hyprland on tty1
|
||||||
|
if [ -z "$DISPLAY" ] && [ "$XDG_VTNR" -eq 1 ]; then
|
||||||
|
mkdir -p ~/.cache
|
||||||
|
exec Hyprland > ~/.cache/hyprland.log 2>&1
|
||||||
|
fi
|
||||||
@@ -1,7 +1,4 @@
|
|||||||
# Created by newuser for 5.9
|
# Use the generated color scheme
|
||||||
# Shortcuts
|
|
||||||
bindkey '^H' backward-kill-word
|
|
||||||
bindkey '^Z' undo
|
|
||||||
|
|
||||||
if test -f ~/.cache/ags/user/generated/terminal/sequences.txt; then
|
if test -f ~/.cache/ags/user/generated/terminal/sequences.txt; then
|
||||||
cat ~/.cache/ags/user/generated/terminal/sequences.txt
|
cat ~/.cache/ags/user/generated/terminal/sequences.txt
|
||||||
|
|||||||
@@ -0,0 +1,4 @@
|
|||||||
|
# Created by newuser for 5.9
|
||||||
|
|
||||||
|
bindkey '^H' backward-kill-word
|
||||||
|
bindkey '^Z' undo
|
||||||
Reference in New Issue
Block a user