This commit is contained in:
k1574 2022-03-05 20:47:57 +05:00
parent 6d60993c19
commit 2fecd69a50
3 changed files with 14 additions and 16 deletions
GIMP/2.10/dynamics
dot/file/xonotic/data
profile

File diff suppressed because one or more lines are too long

View file

@ -98,7 +98,7 @@ bind JOY11 "// not bound"
bind JOY12 "+con_chat_maximize"
"_cl_color" "18"
"_cl_name" "k1574"
seta "_hud_panelorder" "17 15 12 9 5 10 6 14 0 7 4 11 2 1 3 8 13 16 18 19 20 21 22 23 24 25 "
seta "_hud_panelorder" "17 15 12 9 5 10 6 14 0 7 4 11 2 1 3 8 13 16 18 19 20 21 22 23 24 "
"bgmvolume" "0"
seta "cl_allow_uid2name" "1"
seta "cl_autoswitch" "0"
@ -120,20 +120,21 @@ seta "cl_damagetext_velocity_screen" "0 0 0"
seta "cl_damagetext_velocity_world" "0 0 20"
seta "cl_eventchase_death" "0"
"cl_forwardspeed" "360"
seta "cl_matchcount" "440"
seta "cl_matchcount" "448"
"cl_movement_track_canjump" "1"
"cl_particles_quality" "0.4"
"cl_sidespeed" "360"
"cl_smoothviewheight" "0"
seta "cl_spawn_point_particles" "0"
seta "cl_startcount" "90"
seta "cl_startcount" "92"
"cl_upspeed" "360"
seta "cl_weaponimpulsemode" "1"
seta "cl_zoomsensitivity" "1"
seta "cl_zoomspeed" "-1"
"con_chat" "10"
"con_chatrect" "1"
"con_chatrect_x" "0.012812"
"con_chatrect_y" "0.705000"
"con_chatrect_y" "0.808333"
"con_chatwidth" "0.454377"
"crosshair" "33"
seta "crosshair_alpha" "1"
@ -155,6 +156,7 @@ seta "g_maplist_index" "23"
"hostname" "jien's Xonotic Server"
seta "hud_cursormode" "0"
"m_accelerate" "0"
"m_filter" "1"
"mastervolume" "0.275423"
seta "menu_maxplayers" "1"
seta "menu_mouse_absolute" "0"

10
profile
View file

@ -124,7 +124,7 @@ if(! test -r $cdfile) touch $cdfile
tmpcdfile = `{mktemp}
fn c {
fn cd {
# History implementation.
oldpwd = `{pwd}
if(builtin cd $1 && test -n $1){
@ -134,22 +134,18 @@ fn c {
}
}
fn cd {
c $*
}
fn - {
# Move back in history for $1 notes.
num = $1
if(~ $#* 0)
num = 1
backcd = `{sed -n $num^p $"cdfile}
builtin cd $backcd
builtin cd $"backcd
}
fn cds {
# Print history.
cat $cdfile | nl >[2]/dev/null
cat $cdfile | goblin quote | nl >[2]/dev/null
}
fn hcds {