From b1814d3a5f4bb0c54a90fd48893e5bde9dcba66c Mon Sep 17 00:00:00 2001 From: Tobias Reisinger Date: Sat, 8 Jul 2023 12:38:21 +0200 Subject: [PATCH] Cleanup unused stuff --- .cache/.gitkeep | 0 .config/astronvim/lua/user/init.lua | 238 ------- .config/astronvim/lua/user/plugins/init.lua | 10 - .docker/config.json | 12 - .local/bin/.gitkeep | 0 .../124058718/730/local/cfg/config.cfg | 623 ------------------ .../124058718/730/local/cfg/video.txt | 27 - .../124058718/730/local/cfg/videodefaults.txt | 26 - 8 files changed, 936 deletions(-) delete mode 100644 .cache/.gitkeep delete mode 100644 .config/astronvim/lua/user/init.lua delete mode 100644 .config/astronvim/lua/user/plugins/init.lua delete mode 100644 .docker/config.json delete mode 100644 .local/bin/.gitkeep delete mode 100644 .var/app/com.valvesoftware.Steam/.local/share/Steam/userdata/124058718/730/local/cfg/config.cfg delete mode 100644 .var/app/com.valvesoftware.Steam/.local/share/Steam/userdata/124058718/730/local/cfg/video.txt delete mode 100644 .var/app/com.valvesoftware.Steam/.local/share/Steam/userdata/124058718/730/local/cfg/videodefaults.txt diff --git a/.cache/.gitkeep b/.cache/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/.config/astronvim/lua/user/init.lua b/.config/astronvim/lua/user/init.lua deleted file mode 100644 index 65944ac..0000000 --- a/.config/astronvim/lua/user/init.lua +++ /dev/null @@ -1,238 +0,0 @@ -local config = { - - -- Configure AstroNvim updates - updater = { - remote = "origin", -- remote to use - channel = "nightly", -- "stable" or "nightly" - version = "latest", -- "latest", tag name, or regex search like "v1.*" to only do updates before v2 (STABLE ONLY) - branch = "main", -- branch name (NIGHTLY ONLY) - commit = nil, -- commit hash (NIGHTLY ONLY) - pin_plugins = nil, -- nil, true, false (nil will pin plugins on stable only) - skip_prompts = false, -- skip prompts about breaking changes - show_changelog = true, -- show the changelog after performing an update - -- remotes = { -- easily add new remotes to track - -- ["remote_name"] = "https://remote_url.come/repo.git", -- full remote url - -- ["remote2"] = "github_user/repo", -- GitHub user/repo shortcut, - -- ["remote3"] = "github_user", -- GitHub user assume AstroNvim fork - -- }, - }, - - -- Set colorscheme - colorscheme = "dracula", - - -- Override highlight groups in any theme - highlights = { - -- duskfox = { -- a table of overrides - -- Normal = { bg = "#000000" }, - -- }, - default_theme = function(highlights) -- or a function that returns one - local C = require "default_theme.colors" - - highlights.Normal = { - fg = C.fg, - bg = C.bg, - ctermbg = None - } - return highlights - end, - }, - - -- set vim options here (vim.. = value) - options = { - opt = { - relativenumber = true, - }, - g = { - mapleader = " ", - dracula_colorterm = 0, - }, - }, - - -- Disable AstroNvim ui features - ui = { - nui_input = true, - telescope_select = true, - }, - - -- Configure plugins - plugins = { - -- All other entries override the setup() call for default plugins - indent_blankline = { - show_current_context = true, - show_current_context_start = false, - }, - notify = { - background_colour = "#000000" - }, - ["null-ls"] = function(config) - local null_ls = require "null-ls" - -- Check supported formatters and linters - -- https://github.com/jose-elias-alvarez/null-ls.nvim/tree/main/lua/null-ls/builtins/formatting - -- https://github.com/jose-elias-alvarez/null-ls.nvim/tree/main/lua/null-ls/builtins/diagnostics - config.sources = { - -- Set a formatter - null_ls.builtins.formatting.rufo, - -- Set a linter - null_ls.builtins.diagnostics.rubocop, - } - -- set up null-ls's on_attach function - config.on_attach = function(client) - -- NOTE: You can remove this on attach function to disable format on save - if client.resolved_capabilities.document_formatting then - vim.api.nvim_create_autocmd("BufWritePre", { - desc = "Auto format before save", - pattern = "", - callback = vim.lsp.buf.formatting_sync, - }) - end - end - return config -- return final config table - end, - treesitter = { - ensure_installed = { - "lua", - "php", - "rust", - "toml", - "typescript", - "yaml", - }, - }, - ["nvim-lsp-installer"] = { - ensure_installed = { - "clangd", - "rust_analyzer", - "sumneko_lua", - "tsserver", - }, - }, - packer = { - compile_path = vim.fn.stdpath "data" .. "/packer_compiled.lua", - }, - }, - - -- LuaSnip Options - luasnip = { - -- Add paths for including more VS Code style snippets in luasnip - vscode_snippet_paths = {}, - -- Extend filetypes - filetype_extend = { - javascript = { "javascriptreact" }, - }, - }, - - -- Modify which-key registration - ["which-key"] = { - -- Add bindings - register_mappings = { - -- first key is the mode, n == normal mode - n = { - -- second key is the prefix, prefixes - [""] = { - -- which-key registration table for normal mode, leader prefix - -- ["N"] = { "tabnew", "New Buffer" }, - }, - }, - }, - }, - - -- CMP Source Priorities - -- modify here the priorities of default cmp sources - -- higher value == higher priority - -- The value can also be set to a boolean for disabling default sources: - -- false == disabled - -- true == 1000 - cmp = { - source_priority = { - nvim_lsp = 1000, - luasnip = 750, - buffer = 500, - path = 250, - }, - }, - - -- Extend LSP configuration - lsp = { - -- enable servers that you already have installed without lsp-installer - servers = { - -- "pyright" - }, - -- easily add or disable built in mappings added during LSP attaching - mappings = { - n = { - -- ["lf"] = false -- disable formatting keymap - }, - }, - -- add to the server on_attach function - -- on_attach = function(client, bufnr) - -- end, - - -- override the lsp installer server-registration function - -- server_registration = function(server, opts) - -- require("lspconfig")[server].setup(opts) - -- end, - - -- Add overrides for LSP server settings, the keys are the name of the server - ["server-settings"] = { - -- example for addings schemas to yamlls - -- yamlls = { - -- settings = { - -- yaml = { - -- schemas = { - -- ["http://json.schemastore.org/github-workflow"] = ".github/workflows/*.{yml,yaml}", - -- ["http://json.schemastore.org/github-action"] = ".github/action.{yml,yaml}", - -- ["http://json.schemastore.org/ansible-stable-2.9"] = "roles/tasks/*.{yml,yaml}", - -- }, - -- }, - -- }, - -- }, - }, - }, - - -- Diagnostics configuration (for vim.diagnostics.config({})) - diagnostics = { - virtual_text = true, - underline = true, - }, - - mappings = { - -- first key is the mode - n = { - -- second key is the lefthand side of the map - [""] = { ":w!", desc = "Save File" }, - }, - t = { - -- setting a mapping to false will disable it - -- [""] = false, - }, - }, - - -- This function is run last - -- good place to configuring augroups/autocommands and custom filetypes - polish = function() - -- Set key binding - -- Set autocommands - vim.api.nvim_create_augroup("packer_conf", { clear = true }) - vim.api.nvim_create_autocmd("BufWritePost", { - desc = "Sync packer after modifying plugins.lua", - group = "packer_conf", - pattern = "plugins.lua", - command = "source | PackerSync", - }) - - -- Set up custom filetypes - -- vim.filetype.add { - -- extension = { - -- foo = "fooscript", - -- }, - -- filename = { - -- ["Foofile"] = "fooscript", - -- }, - -- pattern = { - -- ["~/%.config/foo/.*"] = "fooscript", - -- }, - -- } - end, -} - -return config diff --git a/.config/astronvim/lua/user/plugins/init.lua b/.config/astronvim/lua/user/plugins/init.lua deleted file mode 100644 index 1986997..0000000 --- a/.config/astronvim/lua/user/plugins/init.lua +++ /dev/null @@ -1,10 +0,0 @@ -return { - -- Tools - { "machakann/vim-swap" }, - - -- Background Tools - { "editorconfig/editorconfig-vim" }, - - -- Eye-Candy - { "dracula/vim" }, -} diff --git a/.docker/config.json b/.docker/config.json deleted file mode 100644 index 255e430..0000000 --- a/.docker/config.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "auths": { - "git.serguzim.me": {}, - "https://index.docker.io/v1/": {}, - "registry.serguzim.me": {} - }, - "credsStore": "pass", - "experimental": "enabled", - "aliases": { - "builder": "buildx" - } -} \ No newline at end of file diff --git a/.local/bin/.gitkeep b/.local/bin/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/.var/app/com.valvesoftware.Steam/.local/share/Steam/userdata/124058718/730/local/cfg/config.cfg b/.var/app/com.valvesoftware.Steam/.local/share/Steam/userdata/124058718/730/local/cfg/config.cfg deleted file mode 100644 index 3674e42..0000000 --- a/.var/app/com.valvesoftware.Steam/.local/share/Steam/userdata/124058718/730/local/cfg/config.cfg +++ /dev/null @@ -1,623 +0,0 @@ -cfgver "1" -unbindall -bind "0" "slot10" -bind "1" "slot1" -bind "2" "slot2" -bind "3" "slot3" -bind "4" "slot4" -bind "5" "slot5" -bind "6" "slot6" -bind "7" "slot7" -bind "8" "slot8" -bind "9" "slot9" -bind "a" "+moveleft" -bind "b" "buymenu" -bind "c" "show_loadout_toggle" -bind "d" "+moveright" -bind "e" "+use" -bind "f" "+lookatweapon" -bind "g" "drop" -bind "k" "playerchatwheel deathcry Moan" -bind "l" "toggleconsole" -bind "m" "teammenu" -bind "n" "+cl_show_team_equipment" -bind "q" "lastinv" -bind "r" "+reload" -bind "s" "+back" -bind "t" "+spray_menu" -bind "u" "messagemode2" -bind "v" "callvote" -bind "w" "+forward" -bind "x" "slot12" -bind "z" "radio" -bind "KP_MINUS" "+left" -bind "KP_PLUS" "+right" -bind "," "buyammo1" -bind "." "buyammo2" -bind "ENTER" "messagemode" -bind "SPACE" "+jump" -bind "TAB" "+showscores" -bind "ESCAPE" "cancelselect" -bind "DEL" "mute" -bind "PGDN" "+left" -bind "PAUSE" "pause" -bind "SHIFT" "+speed" -bind "ALT" "+quickinv" -bind "CTRL" "+duck" -bind "F1" "+radialradio" -bind "F2" "+radialradio2" -bind "F3" "+radialradio3" -bind "F4" "autobuy" -bind "F5" "rebuy" -bind "F6" "save quick" -bind "F7" "load quick" -bind "F10" "quit prompt" -bind "MOUSE1" "+attack" -bind "MOUSE2" "+attack2" -bind "MOUSE3" "player_ping" -bind "MOUSE4" "toggle cl_righthand 0 1" -bind "MOUSE5" "+voicerecord" -bind "MWHEELUP" "+left" -bind "JOY1" "+jump" -bind "JOY2" "+reload" -bind "JOY3" "+use" -bind "JOY4" "invnextnongrenade" -bind "JOY5" "invnextitem" -bind "JOY6" "+lookspin" -bind "JOY7" "togglescores" -bind "JOY8" "gameui_activate" -bind "Y AXIS NEG" "xmove" -bind "Z AXIS POS" "+duck" -bind "Z AXIS NEG" "+attack" -bind "U AXIS NEG" "xlook" -@panorama_debug_overlay_opacity "0.8" -adsp_debug "0" -ai_report_task_timings_on_limit "0" -ai_think_limit_label "0" -aim_flickstick_circular_deadzone_max "0.94" -aim_flickstick_circular_deadzone_min "0.74" -aim_flickstick_crank_sensitivity "1.0" -aim_flickstick_crank_tightness "40.0" -aim_flickstick_enabled "0" -aim_flickstick_flick_snap_mode "2" -aim_flickstick_flick_tightness "0.6" -aim_flickstick_forward_deadzone "7.0" -aim_flickstick_release_dampen_speed "2.0f" -aim_gyro_acceleration "1" -aim_gyro_base_sensitivity "1.5" -aim_gyro_circular_deadzone "0.0" -aim_gyro_conversion_mode "0" -aim_gyro_enable_mode "0" -aim_gyro_high_sense_multiplier "2.0" -aim_gyro_high_sense_speed "360.0" -aim_gyro_invert_pitch "1" -aim_gyro_invert_yaw "0" -aim_gyro_low_sense_speed "7.5" -aim_gyro_pitchyaw_ratio "0.5" -aim_gyro_precision_speed "0.75" -aim_gyro_raw "0" -aim_gyro_ray_angle "-45" -aim_gyro_siapi_convert_pixels_to_angles "25.50" -aim_gyro_siapi_sensitivity_setting "600" -aim_gyro_siapi_vertical_scale_setting "100" -aim_gyro_square_deadzone_pitch "0.0" -aim_gyro_square_deadzone_yaw "0.0" -aim_gyro_zoom_dampening_level1 "0.8" -aim_gyro_zoom_dampening_level2 "0.6" -aim_stick_circular_deadzone_max "0.94" -aim_stick_circular_deadzone_min "0.17" -aim_stick_extra_turning_delay "0.0" -aim_stick_extra_turning_ramp_up_time "0.5" -aim_stick_extra_yaw "60.0" -aim_stick_invert_pitch "0" -aim_stick_invert_yaw "0" -aim_stick_rate_pitch "125.0" -aim_stick_rate_yaw "165.0" -aim_stick_response_curve "1.6" -aim_stick_square_deadzone_pitch "0.0" -aim_stick_square_deadzone_yaw "0.0" -aim_stick_zoom_dampening_level1 "0.8" -aim_stick_zoom_dampening_level2 "0.6" -aim_touchpad_circular_deadzone_min "0.0" -aim_touchpad_invert_pitch "" -aim_touchpad_invert_yaw "" -aim_touchpad_sensitivity_pitch "20.0" -aim_touchpad_sensitivity_yaw "21.0" -aim_touchpad_square_deadzone_pitch "0.0" -aim_touchpad_square_deadzone_yaw "0.0" -aim_touchpad_zoom_dampening_level1 "0.8" -aim_touchpad_zoom_dampening_level2 "0.6" -budget_averages_window "30" -budget_background_alpha "128" -budget_bargraph_background_alpha "128" -budget_bargraph_range_ms "16.6666666667" -budget_history_numsamplesvisible "100" -budget_history_range_ms "66.666666667" -budget_panel_bottom_of_history_fraction ".25" -budget_panel_height "384" -budget_panel_width "512" -budget_panel_x "0" -budget_panel_y "50" -budget_peaks_window "30" -budget_show_averages "0" -budget_show_history "1" -budget_show_peaks "1" -bugreporter_uploadasync "0" -bugreporter_username "" -c_maxdistance "200" -c_maxpitch "90" -c_maxyaw "135" -c_mindistance "30" -c_minpitch "0" -c_minyaw "-135" -c_orthoheight "100" -c_orthowidth "100" -c_thirdpersonshoulder "false" -c_thirdpersonshoulderaimdist "120.0" -c_thirdpersonshoulderdist "40.0" -c_thirdpersonshoulderheight "5.0" -c_thirdpersonshoulderoffset "20.0" -cachedvalue_count_partybrowser "1679514130" -cachedvalue_count_teammates "1679514122" -cam_collision "1" -cam_idealdelta "4.0" -cam_idealdist "150" -cam_idealdistright "0" -cam_idealdistup "0" -cam_ideallag "4.0" -cam_idealpitch "0" -cam_idealyaw "0" -cam_snapto "0" -cc_lang "" -cc_linger_time "1.0" -cc_predisplay_time "0.25" -cc_subtitles "0" -chet_debug_idle "0" -cl_allowdownload "1" -cl_allowupload "1" -cl_autohelp "1" -cl_autowepswitch "0" -cl_bob_lower_amt "21" -cl_bobamt_lat "0.33" -cl_bobamt_vert "0.14" -cl_bobcycle "0.98" -cl_buywheel_donate_key "0" -cl_buywheel_nomousecentering "0" -cl_buywheel_nonumberpurchasing "0" -cl_chatfilter_version "1" -cl_chatfilters "63" -cl_clanid "39516960" -cl_cmdrate "64" -cl_color "2" -cl_compass_enabled "1" -cl_crosshair_drawoutline "1" -cl_crosshair_dynamic_maxdist_splitratio "0.900000" -cl_crosshair_dynamic_splitalpha_innermod "1" -cl_crosshair_dynamic_splitalpha_outermod "0.3" -cl_crosshair_dynamic_splitdist "0.000000" -cl_crosshair_friendly_warning "2" -cl_crosshair_outlinethickness "0.997257" -cl_crosshair_sniper_show_normal_inaccuracy "0" -cl_crosshair_sniper_width "1" -cl_crosshair_t "0" -cl_crosshairalpha "255.000000" -cl_crosshaircolor "5" -cl_crosshaircolor_b "0.000000" -cl_crosshaircolor_g "255.000000" -cl_crosshaircolor_r "0.000000" -cl_crosshairdot "0" -cl_crosshairgap "-1.500845" -cl_crosshairgap_useweaponvalue "0" -cl_crosshairsize "1.030302" -cl_crosshairstyle "4" -cl_crosshairthickness "0.501428" -cl_crosshairusealpha "1" -cl_debugrumble "0" -cl_detail_avoid_force "0.4" -cl_detail_avoid_radius "64" -cl_detail_avoid_recover_speed "0.25" -cl_detail_max_sway "5" -cl_disable_round_end_report "0" -cl_disablefreezecam "0" -cl_disablehtmlmotd "0" -cl_dm_buyrandomweapons "0" -cl_downloadfilter "all" -cl_dz_playagain_auto_spectate "0" -cl_embedded_stream_audio_volume "60" -cl_embedded_stream_audio_volume_xmaster "1" -cl_fixedcrosshairgap "12.700000" -cl_freezecampanel_position_dynamic "1" -cl_grass_mip_bias "-0.5" -cl_hide_avatar_images "" -cl_hud_background_alpha "0.5" -cl_hud_bomb_under_radar "1" -cl_hud_color "0" -cl_hud_healthammo_style "1" -cl_hud_playercount_pos "0" -cl_hud_playercount_showcount "0" -cl_hud_radar_scale "1.103031" -cl_idealpitchscale "0.8" -cl_inventory_radial_immediate_select "1" -cl_inventory_radial_tap_to_cycle "1" -cl_inventory_saved_filter2 "all" -cl_inventory_saved_sort2 "inv_sort_age" -cl_invites_only_friends "0" -cl_invites_only_mainmenu "0" -cl_itemimages_dynamically_generated "2" -cl_join_advertise "1" -cl_minimal_rtt_shadows "1" -cl_mouselook "1" -cl_mute_all_but_friends_and_party "0" -cl_mute_enemy_team "0" -cl_obs_interp_enable "1" -cl_observed_bot_crosshair "0" -cl_observercrosshair "1" -cl_parachute_autodeploy "1" -cl_ping_fade_deadzone "60" -cl_ping_fade_distance "300" -cl_player_ping_mute "0" -cl_playerspray_auto_apply "1" -cl_promoted_settings_acknowledged "1:1608594010318" -cl_quickinventory_filename "radial_quickinventory.txt" -cl_quickinventory_lastinv "0" -cl_quickinventory_line_update_speed "65.0f" -cl_radar_always_centered "0" -cl_radar_icon_scale_min "0.6" -cl_radar_rotate "0" -cl_radar_scale "0.400000" -cl_radar_square_with_scoreboard "1" -cl_radial_radio_tab_0_text_1 "#Chatwheel_requestspend" -cl_radial_radio_tab_0_text_2 "#Chatwheel_requestweapon" -cl_radial_radio_tab_0_text_3 "#Chatwheel_bplan" -cl_radial_radio_tab_0_text_4 "#Chatwheel_followingyou" -cl_radial_radio_tab_0_text_5 "#Chatwheel_midplan" -cl_radial_radio_tab_0_text_6 "#Chatwheel_followme" -cl_radial_radio_tab_0_text_7 "#Chatwheel_aplan" -cl_radial_radio_tab_0_text_8 "#Chatwheel_requestecoround" -cl_radial_radio_tab_1_text_1 "#Chatwheel_enemyspotted" -cl_radial_radio_tab_1_text_2 "#Chatwheel_needbackup" -cl_radial_radio_tab_1_text_3 "#Chatwheel_bplan" -cl_radial_radio_tab_1_text_4 "#Chatwheel_bombcarrierspotted" -cl_radial_radio_tab_1_text_5 "#Chatwheel_multipleenemieshere" -cl_radial_radio_tab_1_text_6 "#Chatwheel_sniperspotted" -cl_radial_radio_tab_1_text_7 "#Chatwheel_aplan" -cl_radial_radio_tab_1_text_8 "#Chatwheel_inposition" -cl_radial_radio_tab_2_text_1 "#Chatwheel_affirmative" -cl_radial_radio_tab_2_text_2 "#Chatwheel_negative" -cl_radial_radio_tab_2_text_3 "#Chatwheel_compliment" -cl_radial_radio_tab_2_text_4 "#Chatwheel_thanks" -cl_radial_radio_tab_2_text_5 "#Chatwheel_cheer" -cl_radial_radio_tab_2_text_6 "#Chatwheel_peptalk" -cl_radial_radio_tab_2_text_7 "#Chatwheel_sorry" -cl_radial_radio_tab_2_text_8 "#Chatwheel_sectorclear" -cl_radial_radio_tap_to_ping "1" -cl_radial_radio_version_reset "12" -cl_radialmenu_deadzone_size_joystick "0.17" -cl_righthand "1" -cl_rumblescale "1.0" -cl_sanitize_player_names "0" -cl_scoreboard_mouse_enable_binding "+attack2" -cl_scoreboard_survivors_always_on "0" -cl_show_clan_in_death_notice "0" -cl_show_observer_crosshair "2" -cl_showhelp "1" -cl_showloadout "1" -cl_showpluginmessages2 "0" -cl_sniper_delay_unscope "0" -cl_spec_follow_grenade_key "0" -cl_spec_mode "5" -cl_tablet_mapmode "2" -cl_teamid_overhead_mode "2" -cl_teammate_colors_show "1" -cl_thirdperson "0" -cl_timeout "30" -cl_updaterate "64" -cl_use_opens_buy_menu "1" -cl_versus_intro "1" -cl_viewmodel_shift_left_amt "1.5" -cl_viewmodel_shift_right_amt "0.75" -closecaption "0" -closeonbuy "0" -commentary_firstrun "0" -con_allownotify "1" -con_enable "1" -crosshair "1" -demo_index "0" -demo_index_max_other "500" -dsp_enhance_stereo "0" -engine_no_focus_sleep "50" -force_audio_english "0" -func_break_max_pieces "15" -g15_update_msec "250" -gameinstructor_enable "0" -hud_scaling "0.850000" -hud_showtargetid "1" -hud_takesshots "0" -joy_accelmax "1.0" -joy_accelscale "4.0" -joy_accelscalepoly "0.5" -joy_advanced "1" -joy_advaxisr "2" -joy_advaxisu "4" -joy_advaxisv "0" -joy_advaxisx "3" -joy_advaxisy "1" -joy_advaxisz "0" -joy_autoaimdampen "0.4" -joy_autoAimDampenMethod "1" -joy_autoaimdampenrange "0.99" -joy_axis_deadzone "0.2" -joy_axisbutton_threshold "0.3" -joy_cfg_preset "1" -joy_circle_correct "1" -joy_curvepoint_1 "0.005" -joy_curvepoint_2 "0.1" -joy_curvepoint_3 "0.4" -joy_curvepoint_4 "0.8" -joy_curvepoint_end "2" -joy_diagonalpov "0" -joy_display_input "0" -joy_forwardsensitivity "-1.0" -joy_forwardthreshold "0.1" -joy_gamecontroller_config "" -joy_gamma "0.1" -joy_inverty "0" -joy_lowend "0.35" -joy_lowend_linear "0.55" -joy_lowmap "0.1" -joy_movement_stick "0" -joy_name "joystick" -joy_no_accel_jump "0" -joy_pitchsensitivity "-1" -joy_pitchthreshold "0.15" -joy_response_look "0" -joy_response_look_pitch "1" -joy_response_move "1" -joy_sensitive_step0 "0.1" -joy_sensitive_step1 "0.4" -joy_sensitive_step2 "0.90" -joy_sidesensitivity "1" -joy_sidethreshold "0.15" -joy_wingmanwarrior_turnhack "0" -joy_yawsensitivity "-1" -joy_yawthreshold "0.15" -joystick "1" -joystick_force_disabled "1" -joystick_force_disabled_set_from_options "1" -key_bind_version "5" -lobby_default_privacy_bits2 "0" -lockMoveControllerRet "0" -lookspring "0" -lookstrafe "0" -m_customaccel "0" -m_customaccel_exponent "1.05" -m_customaccel_max "0" -m_customaccel_scale "0.04" -m_forward "1" -m_mouseaccel1 "0" -m_mouseaccel2 "0" -m_mousespeed "1" -m_pitch "0.022" -m_rawinput "1" -m_side "0.8" -m_yaw "0.022" -mapoverview_icon_scale "1.0" -mat_enable_uber_shaders "1" -mat_monitorgamma "2.2" -mat_monitorgamma_tv_enabled "0" -mat_powersavingsmode "0" -mat_queue_report "0" -mat_spewalloc "0" -mc_accel_band_size "0.5" -mc_dead_zone_radius "0.06" -mc_max_pitchrate "100.0" -mc_max_yawrate "230.0" -mm_csgo_community_search_players_min "3" -mm_dedicated_search_maxping "75.448570" -mm_server_search_lan_ports "27015,27016,27017,27018,27019,27020" -move_stick_aggression_strength "60.0" -move_stick_aggressive "1" -move_stick_circular_deadzone_max "0.98" -move_stick_circular_deadzone_min "0.17" -move_stick_response_curve "2.0" -move_stick_square_deadzone_forward "0.0" -move_stick_square_deadzone_strafe "0.0" -move_stick_walk_zone "0.65" -move_touchpad_circular_deadzone_min "0.1" -move_touchpad_sensitivity_forward "1.0" -move_touchpad_sensitivity_strafe "1.0" -move_touchpad_square_deadzone_forward "0.2" -move_touchpad_square_deadzone_strafe "0.2" -muzzleflash_light "1" -name "Serguzim" -net_allow_multicast "1" -net_graph "0" -net_graphheight "64" -net_graphholdsvframerate "0" -net_graphipc "0" -net_graphmsecs "400" -net_graphpos "1" -net_graphproportionalfont "1" -net_graphshowinterp "1" -net_graphshowlatency "1" -net_graphshowsvframerate "0" -net_graphsolid "1" -net_graphtext "1" -net_maxroutable "1200" -net_scale "5" -net_steamcnx_allowrelay "1" -npc_height_adjust "1" -option_duck_method "0" -option_speed_method "0" -password "CB1FED3C80B40C63D23DEEC81651D4029AACBFE621D3565F509895038A9BB2FB" -play_distance "1" -player_botdifflast_s "2" -player_competitive_maplist_2v2_10_0_E8C782EC "mg_de_train,mg_de_lake,mg_de_inferno,mg_de_shortnuke,mg_de_vertigo,mg_de_boyard,mg_de_chalice,mg_de_shortdust,mg_de_overpass,mg_de_cbble" -player_competitive_maplist_8_10_0_C9C8D674 "mg_de_ancient,mg_de_inferno,mg_de_nuke,mg_de_vertigo,mg_de_mirage,mg_de_anubis,mg_de_overpass,mg_de_dust2,mg_de_train,mg_cs_office,mg_de_cache,mg_de_tuscan,mg_lobby_mapveto,mg_cs_agency" -player_nevershow_communityservermessage "0" -player_survival_list_10_0_303 "mg_dz_blacksite,mg_dz_sirocco,mg_dz_vineyard,mg_dz_ember" -player_teamplayedlast "3" -player_wargames_list2_10_0_E04 "mg_skirmish_flyingscoutsman,mg_skirmish_armsrace,mg_skirmish_demolition,mg_skirmish_retakes" -r_drawmodelstatsoverlaymax "1.5" -r_drawmodelstatsoverlaymin "0.1" -r_drawtracers_firstperson "1" -r_eyegloss "1" -r_eyemove "1" -r_eyeshift_x "0" -r_eyeshift_y "0" -r_eyeshift_z "0" -r_eyesize "0" -r_player_visibility_mode "1" -rate "196608" -safezonex "1.0" -safezoney "1.0" -scene_showfaceto "0" -scene_showlook "0" -scene_showmoveto "0" -scene_showunlock "0" -sdl_displayindex "0" -sensitivity "0.200000" -sk_autoaim_mode "1" -skill "1.000000" -snd_deathcamera_volume "0.3" -snd_duckerattacktime "0.5" -snd_duckerreleasetime "2.5" -snd_duckerthreshold "0.15" -snd_ducking_off "1" -snd_ducktovolume "0.55" -snd_dzmusic_volume "0.150988" -snd_hrtf_distance_behind "100" -snd_hrtf_voice_delay "0.1" -snd_hwcompat "0" -snd_mapobjective_volume "0.000000" -snd_menumusic_volume "0.031492" -snd_mix_async "1" -snd_mix_async_onetime_reset "1" -snd_mixahead "0.025" -snd_music_selection "1" -snd_music_volume_onetime_reset_2 "1" -snd_musicvolume_multiplier_inoverlay "0.100000" -snd_mute_losefocus "0" -snd_mute_mvp_music_live_players "1" -snd_mvp_volume "0.451615" -snd_pitchquality "1" -snd_roundend_volume "0.017697" -snd_roundstart_volume "0.015688" -snd_surround_speakers "-1" -snd_tensecondwarning_volume "0.121377" -sound_device_override "" -spec_replay_autostart "1" -spec_show_xray "1" -spec_usenumberkeys_nobinds "1" -ss_splitmode "0" -steaminput_firsttimepopup "0" -steaminput_glyph_display_mode "0" -steaminput_glyph_neutral "1" -steaminput_glyph_solid "1" -steaminput_glyph_style "1" -store_version "1" -suitvolume "0.25" -sv_forcepreload "0" -sv_log_onefile "0" -sv_logbans "0" -sv_logecho "1" -sv_logfile "1" -sv_logflush "0" -sv_logsdir "logs" -sv_noclipaccelerate "5" -sv_noclipspeed "5" -sv_pvsskipanimation "1" -sv_skyname "sky_cs15_daylight03_hdr" -sv_specaccelerate "5" -sv_specnoclip "1" -sv_specspeed "3" -sv_unlockedchapters "1" -sv_voiceenable "1" -test_convar "0" -texture_budget_background_alpha "128" -texture_budget_panel_bottom_of_history_fraction ".25" -texture_budget_panel_height "284" -texture_budget_panel_width "512" -texture_budget_panel_x "0" -texture_budget_panel_y "450" -tr_best_course_time "0" -tr_completed_training "0" -triple_monitor_mode "0" -trusted_launch "0" -trusted_launch_once "0" -tv_nochat "0" -ui_deepstats_radio_heat_figurine "0" -ui_deepstats_radio_heat_tab "0" -ui_deepstats_radio_heat_team "0" -ui_deepstats_toplevel_mode "240" -ui_inventorysettings_recently_acknowledged "" -ui_mainmenu_bkgnd_movie_CC4ECB9 "anubis" -ui_nearbylobbies_filter3 "competitive" -ui_news_last_read_link "https://blog.counter-strike.net/index.php/2023/02/41047/" -ui_playsettings_custom_preset "mg_de_mirage,mg_de_inferno,mg_de_overpass,mg_de_ancient,mg_de_train,mg_de_cache" -ui_playsettings_directchallengekey "ATRYH-RQPC-SF3DP-J43J" -ui_playsettings_flags_listen_casual "0" -ui_playsettings_flags_listen_competitive "48" -ui_playsettings_flags_listen_cooperative "0" -ui_playsettings_flags_listen_deathmatch "0" -ui_playsettings_flags_listen_scrimcomp2v2 "0" -ui_playsettings_flags_listen_skirmish "0" -ui_playsettings_flags_listen_survival "0" -ui_playsettings_flags_official_casual "0" -ui_playsettings_flags_official_competitive "16" -ui_playsettings_flags_official_cooperative "0" -ui_playsettings_flags_official_deathmatch "32" -ui_playsettings_flags_official_scrimcomp2v2 "0" -ui_playsettings_flags_official_skirmish "0" -ui_playsettings_flags_official_survival "0" -ui_playsettings_maps_listen_casual "mg_de_mirage" -ui_playsettings_maps_listen_competitive "mg_de_nuke" -ui_playsettings_maps_listen_deathmatch "random_classic" -ui_playsettings_maps_listen_scrimcomp2v2 "mg_de_inferno" -ui_playsettings_maps_listen_skirmish "mg_skirmish_flyingscoutsman" -ui_playsettings_maps_official_casual "mg_casualdelta" -ui_playsettings_maps_official_deathmatch "mg_casualdelta" -ui_playsettings_maps_workshop "@workshop/308490450/xhair_v3" -ui_playsettings_mode_listen "competitive" -ui_playsettings_mode_official_v20 "competitive" -ui_playsettings_prime "1" -ui_playsettings_survival_solo "0" -ui_playsettings_warmup_map_name "de_mirage" -ui_popup_weaponupdate_version "2109" -ui_setting_advertiseforhire_auto "0" -ui_setting_advertiseforhire_auto_last "/competitive" -ui_show_subscription_alert "1" -ui_show_unlock_competitive_alert "" -ui_steam_overlay_notification_position "topleft" -ui_vanitysetting_loadoutslot_ct "melee" -ui_vanitysetting_loadoutslot_t "melee" -ui_vanitysetting_team "t" -vgui_message_dialog_modal "1" -viewmodel_fov "60" -viewmodel_offset_x "1" -viewmodel_offset_y "1" -viewmodel_offset_z "-1" -viewmodel_presetpos "1" -viewmodel_recoil "1.0" -voice_caster_enable "0" -voice_caster_scale "0.250772" -voice_enable "1" -voice_forcemicrecord "1" -voice_modenable "1" -voice_positional "0" -voice_scale "0.701774" -voice_system_enable "1" -voice_threshold "4000" -volume "0.302577" -vprof_graphheight "256" -vprof_graphwidth "512" -vprof_unaccounted_limit "0.3" -vprof_verbose "1" -vprof_warningmsec "10" -weapon_accuracy_logging "0" -xbox_autothrottle "1" -xbox_throttlebias "100" -xbox_throttlespoof "200" -zoom_sensitivity_ratio_joystick "1.0" -zoom_sensitivity_ratio_mouse "0.750000" -cmd1 +jlook diff --git a/.var/app/com.valvesoftware.Steam/.local/share/Steam/userdata/124058718/730/local/cfg/video.txt b/.var/app/com.valvesoftware.Steam/.local/share/Steam/userdata/124058718/730/local/cfg/video.txt deleted file mode 100644 index b0a17f8..0000000 --- a/.var/app/com.valvesoftware.Steam/.local/share/Steam/userdata/124058718/730/local/cfg/video.txt +++ /dev/null @@ -1,27 +0,0 @@ -"config" -{ - "setting.csm_quality_level" "1" - "setting.mat_software_aa_strength" "1" - "VendorID" "1" - "DeviceID" "1" - "setting.fullscreen" "1" - "setting.nowindowborder" "1" - "setting.aspectratiomode" "1" - "setting.mat_vsync" "0" - "setting.mat_triplebuffered" "0" - "setting.mat_monitorgamma" "2.200000" - "setting.mat_queue_mode" "-1" - "setting.mat_motion_blur_enabled" "0" - "setting.gpu_mem_level" "0" - "setting.gpu_level" "0" - "setting.mat_antialias" "0" - "setting.mat_aaquality" "0" - "setting.mat_forceaniso" "0" - "setting.cpu_level" "0" - "setting.videoconfig_version" "1" - "setting.defaultres" "2560" - "setting.defaultresheight" "1440" - "setting.r_player_visibility_mode" "1" - "setauto.mat_enable_uber_shaders" "1" - "setting.mat_texturestreaming" "0" -} diff --git a/.var/app/com.valvesoftware.Steam/.local/share/Steam/userdata/124058718/730/local/cfg/videodefaults.txt b/.var/app/com.valvesoftware.Steam/.local/share/Steam/userdata/124058718/730/local/cfg/videodefaults.txt deleted file mode 100644 index c8689f0..0000000 --- a/.var/app/com.valvesoftware.Steam/.local/share/Steam/userdata/124058718/730/local/cfg/videodefaults.txt +++ /dev/null @@ -1,26 +0,0 @@ -"config" -{ - "setting.csm_quality_level" "3" - "setting.mat_software_aa_strength" "1" - "VendorID" "1" - "DeviceID" "1" - "setting.fullscreen" "0" - "setting.nowindowborder" "1" - "setting.aspectratiomode" "1" - "setting.mat_vsync" "0" - "setting.mat_triplebuffered" "0" - "setting.mat_monitorgamma" "2.200000" - "setting.mat_queue_mode" "-1" - "setting.mat_motion_blur_enabled" "0" - "setting.gpu_mem_level" "2" - "setting.gpu_level" "3" - "setting.mat_antialias" "0" - "setting.mat_aaquality" "0" - "setting.mat_forceaniso" "1" - "setting.cpu_level" "2" - "setting.videoconfig_version" "1" - "setting.defaultres" "2560" - "setting.defaultresheight" "1440" - "setting.r_player_visibility_mode" "1" - "setting.mat_enable_uber_shaders" "1" -}