Too lazy.

This commit is contained in:
k1574 2021-06-15 07:48:00 +05:00
parent 81ab9fe009
commit b59f11313b
3 changed files with 30 additions and 18 deletions

View file

@ -47,7 +47,7 @@ export_loop \
SETENV '$LIB/setenv/sh' \ SETENV '$LIB/setenv/sh' \
GOPATH '$APP/go' \ GOPATH '$APP/go' \
GOEXE '$GOPATH/bin'\ GOEXE '$GOPATH/bin'\
VPATH '$DEV/v'\ VPATH '$APP/v'\
VEXE '$VPATH'\ VEXE '$VPATH'\
PLAN9BASE '/usr/local/plan9' \ PLAN9BASE '/usr/local/plan9' \
PLAN9PORT '$APP/plan9' \ PLAN9PORT '$APP/plan9' \

View file

@ -47,6 +47,7 @@ bind DOWNARROW "// not bound"
bind LEFTARROW "// not bound" bind LEFTARROW "// not bound"
bind RIGHTARROW "// not bound" bind RIGHTARROW "// not bound"
bind ALT "+crouch" bind ALT "+crouch"
bind CTRL "+crouch"
bind SHIFT "+showscores" bind SHIFT "+showscores"
bind F1 "vyes" bind F1 "vyes"
bind F2 "vno" bind F2 "vno"
@ -119,20 +120,20 @@ seta "cl_damagetext_velocity_screen" "0 0 0"
seta "cl_damagetext_velocity_world" "0 0 20" seta "cl_damagetext_velocity_world" "0 0 20"
seta "cl_eventchase_death" "0" seta "cl_eventchase_death" "0"
"cl_forwardspeed" "360" "cl_forwardspeed" "360"
seta "cl_matchcount" "430" seta "cl_matchcount" "433"
"cl_movement_track_canjump" "1" "cl_movement_track_canjump" "1"
"cl_particles_quality" "0.4" "cl_particles_quality" "0.4"
"cl_sidespeed" "360" "cl_sidespeed" "360"
"cl_smoothviewheight" "0" "cl_smoothviewheight" "0"
seta "cl_spawn_point_particles" "0" seta "cl_spawn_point_particles" "0"
seta "cl_startcount" "87" seta "cl_startcount" "88"
"cl_upspeed" "360" "cl_upspeed" "360"
seta "cl_zoomsensitivity" "1" seta "cl_zoomsensitivity" "1"
seta "cl_zoomspeed" "-1" seta "cl_zoomspeed" "-1"
"con_chat" "10" "con_chat" "10"
"con_chatrect" "1" "con_chatrect" "1"
"con_chatrect_x" "0.012812" "con_chatrect_x" "0.012812"
"con_chatrect_y" "0.705000" "con_chatrect_y" "0.808333"
"con_chatwidth" "0.454377" "con_chatwidth" "0.454377"
"crosshair" "33" "crosshair" "33"
seta "crosshair_alpha" "1" seta "crosshair_alpha" "1"

39
profile
View file

@ -46,14 +46,14 @@ plan9 = $app/plan9 # Plan9.
plan9exe= $plan9/bin # Plan9 bnaries. plan9exe= $plan9/bin # Plan9 bnaries.
gopath = $app/go # Golang path. gopath = $app/go # Golang path.
goexe = $gopath/bin # Golang binaries. goexe = $gopath/bin # Golang binaries.
vpath = $dev/v # VLang binaries and scripts. vpath = $app/v # VLang binaries and scripts.
vexe = $vpath vexe = $vpath
setenv = $lib/setenv/rc # Setting environment script. setenv = $lib/setenv/rc # Setting environment script.
font = $plan9/font/fixed/unicode.9x15.font # The standard font for Plan9 program. font = $plan9/font/fixed/unicode.9x15.font # The standard font for Plan9 program.
editor = ed editor = ed
shell = rc shell = rc
path = ( $exe $path $goexe $plan9exe $infernoexe $vexe) path = ( $exe $path $goexe $plan9exe $infernoexe $vexe )
# Pretend path from growing because of running many "rc"s. # Pretend path from growing because of running many "rc"s.
if(which goblin >/dev/null >[2=1]){ if(which goblin >/dev/null >[2=1]){
path = `{ path = `{
@ -68,18 +68,29 @@ xmodmap = $lib/xmodmap
switch( `{uname} ){ switch( `{uname} ){
case ( Linux NetBSD DragonFly OpenBSD FreeBSD ) # On Unix-like systems. case ( Linux NetBSD DragonFly OpenBSD FreeBSD ) # On Unix-like systems.
# Default color. if(which aes){
LESS_TERMCAP_md = `{ perl -e 'print "\033[1;31m" ;' } LESS_TERMCAP_md = `{aes fg-red bold }
LESS_TERMCAP_me = `{ perl -e 'print "\033[0m" ;' } LESS_TERMCAP_me = `{aes end}
# Underlined. LESS_TERMCAP_us = `{aes fg-green bold}
LESS_TERMCAP_us = `{ perl -e 'print "\033[1;32m" ;' } LESS_TERMCAP_ue = `{aes end}
LESS_TERMCAP_ue = `{ perl -e 'print "\033[0m" ;' } LESS_TERMCAP_so = `{aes fg-yellow}
# Service info. LESS_TERMCAP_se = `{aes end}
LESS_TERMCAP_so = `{ perl -e 'print "\033[1;33m ";' } LESS_TERMCAP_mb = `{aes fg-cyan}
LESS_TERMCAP_se = `{ perl -e 'print "\033[0m" ;' } LESS_TERMCAP_me = `{aes end}
# Blinking color. }
LESS_TERMCAP_mb = `{ perl -e 'print "\033[1;32m" ;' } if not {
LESS_TERMCAP_me = `{ perl -e 'print "\033[0m" ;' } LESS_TERMCAP_md = `{ perl -e 'print "\033[1;31m" ;' }
LESS_TERMCAP_me = `{ perl -e 'print "\033[0m" ;' }
# Underlined.
LESS_TERMCAP_us = `{ perl -e 'print "\033[1;32m" ;' }
LESS_TERMCAP_ue = `{ perl -e 'print "\033[0m" ;' }
# Service info.
LESS_TERMCAP_so = `{ perl -e 'print "\033[1;33m ";' }
LESS_TERMCAP_se = `{ perl -e 'print "\033[0m" ;' }
# Blinking color.
LESS_TERMCAP_mb = `{ perl -e 'print "\033[1;32m" ;' }
LESS_TERMCAP_me = `{ perl -e 'print "\033[0m" ;' }
}
# Pager. # Pager.
PAGER = $pager PAGER = $pager
MANPAGER = $manpager MANPAGER = $manpager