Compare commits

...

4 Commits

4 changed files with 41 additions and 27 deletions

View File

@ -1,6 +1,15 @@
# ~/.MangoHud/$APPNAME.conf
# MangoHud.conf in binary directory
# ~/.MangoHud/MangoHud.conf
# 16 is comfortable on a smaller TV, 20 on a laptop on lap, 32 on a more
# modern TV
#font_size=16
font_size=20
#font_size=32
font_file=~/.shell-things/submodules/atkinson-hyperlegible-next-mono/fonts/variable/AtkinsonHyperlegibleMono[wght].ttf
# Other settings than font
background_alpha=0
battery_time
battery
@ -11,8 +20,6 @@ device_battery=gamepad+mouse
device_battery_icon
display_server
fan
font_file=~/.shell-things/submodules/atkinson-hyperlegible-next-mono/fonts/variable/AtkinsonHyperlegibleMono[wght].ttf
font_size=16
fps
frametime
frame_timing

View File

@ -58,7 +58,14 @@ cp -v conf/init.vim $HOME/.config/nvim/init.vim
cp -v conf/makepkg.conf $HOME/.makepkg.conf
# system information overlay
cp -v conf/MangoHud.conf $HOME/.config/MangoHud/
if [ ! -f $HOME/.config/MangoHud/MangoHud.conf ]; then
cp -v conf/MangoHud.conf $HOME/.config/MangoHud/
fi
# wayland native terminal
if [ ! -f $HOME/.config/foot/foot.ini ]; then
cp -v conf/foot/foot.ini $HOME/.config/foot/foot.ini
fi
# the media player
cp -v conf/mpv.conf $HOME/.config/mpv/mpv.conf

View File

@ -62,9 +62,9 @@ if [ -z "$debian_chroot" ] && [ -r /etc/debian_chroot ]; then
fi
# set a fancy prompt (non-color, unless we know we "want" color)
case "$TERM" in
xterm-color) color_prompt=yes ;;
esac
#case "$TERM" in
# xterm-color) color_prompt=yes ;;
#esac
force_color_prompt=yes
@ -96,7 +96,7 @@ fi
# If this is an xterm set the title to user@host:dir
case "$TERM" in
xterm* | *rxvt*)
xterm* | *rxvt* | foot*)
PS1="\[\e]0;\u@\h: \w\a\]$PS1"
;;
*) ;;
@ -203,13 +203,13 @@ fi
(ulimit -c unlimited &)
# More colours
if [[ $TERM == 'xterm' ]]; then
export TERM=xterm-256color
fi
#if [[ $TERM == 'xterm' ]]; then
# export TERM=xterm-256color
#fi
if [[ $TERM == 'screen' ]]; then
export TERM=screen-256color
fi
#if [[ $TERM == 'screen' ]]; then
# export TERM=screen-256color
#fi
# Things after this are just examples and should be put to some other file, which is sourced above.
@ -381,7 +381,7 @@ alias rscp='rsync -h --progress -avz '
alias rscpr='rsync -h --progress -azvv '
# TMUX specific
alias tmux="TERM=tmux-256color \tmux -2u"
#alias tmux="TERM=tmux-256color \tmux -2u"
alias attach="tmux attach-session"
alias detach="tmux detach"
@ -1019,8 +1019,8 @@ if [ -f ~/.bash_custom ]; then
fi
# If $TMUX, then TERM is tmux-256color
if [ -v TMUX ]; then
TERM=tmux-256color
fi
#if [ -v TMUX ]; then
# TERM=tmux-256color
#fi
# vim: filetype=bash

View File

@ -168,13 +168,13 @@ fi
(ulimit -c unlimited &)
# More colours
if [[ $TERM == 'xterm' ]]; then
export TERM=xterm-256color
fi
#if [[ $TERM == 'xterm' ]]; then
# export TERM=xterm-256color
#fi
if [[ $TERM == 'screen' ]]; then
export TERM=screen-256color
fi
#if [[ $TERM == 'screen' ]]; then
# export TERM=screen-256color
#fi
# Sets the default editor.
#export EDITOR=nvim # MIKAELA_GREP MIKAELA_GREP_ENVIRONMENT
@ -345,7 +345,7 @@ alias rscp='rsync -h --progress -avz '
alias rscpr='rsync -h --progress -azvv '
# TMUX specific
alias tmux="TERM=tmux-256color \tmux -2u"
#alias tmux="TERM=tmux-256color \tmux -2u"
alias attach="tmux attach-session"
alias detach="tmux detach"
@ -1012,8 +1012,8 @@ if [ -f ~/.warnings ]; then
fi
# If $TMUX, then TERM is tmux-256color
if [ -v TMUX ]; then
TERM=tmux-256color
fi
#if [ -v TMUX ]; then
# TERM=tmux-256color
#fi
# vim: filetype=zsh