Fixes in xinitrc. "e" function to call editor in profile. Xonotic changes.

This commit is contained in:
k1574 2020-11-23 19:54:03 +05:00
parent fa7d3e9d6a
commit a9c6d62d07
3 changed files with 15 additions and 4 deletions

View file

@ -96,7 +96,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 "
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 "
"bgmvolume" "0"
seta "cl_allow_uid2name" "1"
seta "cl_autoswitch" "0"
@ -118,20 +118,20 @@ 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" "375"
seta "cl_matchcount" "384"
"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" "76"
seta "cl_startcount" "77"
"cl_upspeed" "360"
seta "cl_zoomsensitivity" "1"
seta "cl_zoomspeed" "-1"
"con_chat" "10"
"con_chatrect" "1"
"con_chatrect_x" "0.012812"
"con_chatrect_y" "0.808333"
"con_chatrect_y" "0.705000"
"con_chatwidth" "0.454377"
"fov" "130"
seta "fraglimit_override" "0"

View file

@ -134,6 +134,10 @@ fn p {
plumb $*
}
fn e {
$editor $*
}
# Setting enviroment.
if(test -r $setenv){
. $setenv

View file

@ -1 +1,8 @@
xconf=/etc/X11/xinit/xinitrc.d
if test -d $xconf ; then
for f in $xconf/?*.sh ; do
test -r $f && . "$f"
done
fi
exec $@