Compare commits
2 commits
5d701682fa
...
566ce3e606
Author | SHA1 | Date | |
---|---|---|---|
566ce3e606 | |||
2b6e96440f |
2 changed files with 12 additions and 2 deletions
|
@ -82,7 +82,7 @@ font_size 12.0
|
||||||
#: with the background color of the cell underneath instead, use the
|
#: with the background color of the cell underneath instead, use the
|
||||||
#: special keyword: background
|
#: special keyword: background
|
||||||
|
|
||||||
# cursor_shape block
|
cursor_shape block
|
||||||
|
|
||||||
#: The cursor shape can be one of (block, beam, underline)
|
#: The cursor shape can be one of (block, beam, underline)
|
||||||
|
|
||||||
|
@ -594,7 +594,7 @@ color15 #CCBC8E
|
||||||
|
|
||||||
# env
|
# env
|
||||||
|
|
||||||
env PS1="\[$(tput bold)\]\[$(tput setaf 34)\][\[$(tput setaf 28)\]\u\[$(tput setaf 40)\]@\[$(tput setaf 28)\]\h \[$(tput setaf 40)\]\W\[$(tput setaf 34)\]]\[$(tput setaf 28)\]\\$ \[$(tput sgr0)\]"
|
#env PS1="\[$(tput bold)\]\[$(tput setaf 34)\][\[$(tput setaf 28)\]\u\[$(tput setaf 40)\]@\[$(tput setaf 28)\]\h \[$(tput setaf 40)\]\W\[$(tput setaf 34)\]]\[$(tput setaf 28)\]\\$ \[$(tput sgr0)\]"
|
||||||
|
|
||||||
|
|
||||||
#: Specify environment variables to set in all child processes. Note
|
#: Specify environment variables to set in all child processes. Note
|
||||||
|
@ -635,6 +635,14 @@ env PS1="\[$(tput bold)\]\[$(tput setaf 34)\][\[$(tput setaf 28)\]\u\[$(tput set
|
||||||
#: functionality is a security risk as it means that any program, even
|
#: functionality is a security risk as it means that any program, even
|
||||||
#: one running on a remote server via SSH can read your clipboard.
|
#: one running on a remote server via SSH can read your clipboard.
|
||||||
|
|
||||||
|
shell_integration no-cursor
|
||||||
|
|
||||||
|
#: Enable shell integration on supported shells. This enables features
|
||||||
|
#: such as jumping to previous prompts, browsing the output of the
|
||||||
|
#: previous command in a pager, etc. on supported shells. Set to
|
||||||
|
#: ``disabled`` to turn off shell integration, completely. See
|
||||||
|
#: https://sw.kovidgoyal.net/kitty/shell-integration/ for details.
|
||||||
|
|
||||||
term xterm-256color
|
term xterm-256color
|
||||||
|
|
||||||
#: The value of the TERM environment variable to set. Changing this
|
#: The value of the TERM environment variable to set. Changing this
|
||||||
|
|
2
.xinitrc
2
.xinitrc
|
@ -1,6 +1,8 @@
|
||||||
|
|
||||||
[ -f ~/.Xmodmap ] && xmodmap ~/.Xmodmap
|
[ -f ~/.Xmodmap ] && xmodmap ~/.Xmodmap
|
||||||
|
|
||||||
|
source /etc/X11/xinit/xinitrc.d/50-systemd-user.sh
|
||||||
|
|
||||||
export TERMINAL=kitty
|
export TERMINAL=kitty
|
||||||
xrdb -load ~/.Xresources
|
xrdb -load ~/.Xresources
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue