aliases
This commit is contained in:
parent
4045540bf2
commit
10373a66f5
6 changed files with 3878 additions and 1490 deletions
|
@ -1,8 +1,10 @@
|
||||||
{
|
{
|
||||||
"global": {
|
"global": {
|
||||||
|
"ask_for_confirmation_before_quitting": true,
|
||||||
"check_for_updates_on_startup": true,
|
"check_for_updates_on_startup": true,
|
||||||
"show_in_menu_bar": false,
|
"show_in_menu_bar": false,
|
||||||
"show_profile_name_in_menu_bar": false
|
"show_profile_name_in_menu_bar": false,
|
||||||
|
"unsafe_ui": false
|
||||||
},
|
},
|
||||||
"profiles": [
|
"profiles": [
|
||||||
{
|
{
|
||||||
|
@ -56,7 +58,8 @@
|
||||||
},
|
},
|
||||||
"ignore": false,
|
"ignore": false,
|
||||||
"manipulate_caps_lock_led": true,
|
"manipulate_caps_lock_led": true,
|
||||||
"simple_modifications": []
|
"simple_modifications": [],
|
||||||
|
"treat_as_built_in_keyboard": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"disable_built_in_keyboard_if_exists": false,
|
"disable_built_in_keyboard_if_exists": false,
|
||||||
|
@ -69,7 +72,50 @@
|
||||||
},
|
},
|
||||||
"ignore": false,
|
"ignore": false,
|
||||||
"manipulate_caps_lock_led": true,
|
"manipulate_caps_lock_led": true,
|
||||||
"simple_modifications": []
|
"simple_modifications": [],
|
||||||
|
"treat_as_built_in_keyboard": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"disable_built_in_keyboard_if_exists": false,
|
||||||
|
"fn_function_keys": [],
|
||||||
|
"identifiers": {
|
||||||
|
"is_keyboard": true,
|
||||||
|
"is_pointing_device": false,
|
||||||
|
"product_id": 49970,
|
||||||
|
"vendor_id": 1133
|
||||||
|
},
|
||||||
|
"ignore": false,
|
||||||
|
"manipulate_caps_lock_led": true,
|
||||||
|
"simple_modifications": [],
|
||||||
|
"treat_as_built_in_keyboard": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"disable_built_in_keyboard_if_exists": false,
|
||||||
|
"fn_function_keys": [],
|
||||||
|
"identifiers": {
|
||||||
|
"is_keyboard": false,
|
||||||
|
"is_pointing_device": true,
|
||||||
|
"product_id": 49970,
|
||||||
|
"vendor_id": 1133
|
||||||
|
},
|
||||||
|
"ignore": true,
|
||||||
|
"manipulate_caps_lock_led": false,
|
||||||
|
"simple_modifications": [],
|
||||||
|
"treat_as_built_in_keyboard": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"disable_built_in_keyboard_if_exists": false,
|
||||||
|
"fn_function_keys": [],
|
||||||
|
"identifiers": {
|
||||||
|
"is_keyboard": false,
|
||||||
|
"is_pointing_device": true,
|
||||||
|
"product_id": 613,
|
||||||
|
"vendor_id": 1452
|
||||||
|
},
|
||||||
|
"ignore": true,
|
||||||
|
"manipulate_caps_lock_led": false,
|
||||||
|
"simple_modifications": [],
|
||||||
|
"treat_as_built_in_keyboard": false
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"fn_function_keys": [
|
"fn_function_keys": [
|
||||||
|
|
|
@ -48,7 +48,6 @@ cask "mediaelch"
|
||||||
cask "minecraft"
|
cask "minecraft"
|
||||||
cask "mpv"
|
cask "mpv"
|
||||||
cask "multimc"
|
cask "multimc"
|
||||||
cask "obs"
|
|
||||||
cask "openrct2"
|
cask "openrct2"
|
||||||
cask "portingkit"
|
cask "portingkit"
|
||||||
cask "raspberry-pi-imager"
|
cask "raspberry-pi-imager"
|
||||||
|
@ -58,7 +57,4 @@ cask "steam"
|
||||||
cask "timemachineeditor"
|
cask "timemachineeditor"
|
||||||
cask "wine-crossover"
|
cask "wine-crossover"
|
||||||
cask "zerotier-one"
|
cask "zerotier-one"
|
||||||
mas "Disk Speed Test", id: 425264550
|
|
||||||
mas "eDrawings", id: 1209754386
|
|
||||||
mas "Emby", id: 992180193
|
mas "Emby", id: 992180193
|
||||||
mas "LINE", id: 539883307
|
|
||||||
|
|
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,6 +1,7 @@
|
||||||
# Slicer cache
|
# Slicer cache
|
||||||
Library/Application\ Support/SuperSlicer/cache/*
|
Library/Application\ Support/SuperSlicer/cache/*
|
||||||
Library/Application\ Support/PrusaSlicer/cache/*
|
Library/Application\ Support/PrusaSlicer/cache/*
|
||||||
|
Library/Application Support/SuperSlicer/ui_layout/*
|
||||||
|
|
||||||
# vim swap files
|
# vim swap files
|
||||||
*.swp
|
*.swp
|
||||||
|
|
16
.zsh_aliases
16
.zsh_aliases
|
@ -113,6 +113,7 @@ elif (( $+commands[nixos-rebuild] )); then
|
||||||
## Package Manager - nix
|
## Package Manager - nix
|
||||||
alias psearch='nix search nixpkgs'
|
alias psearch='nix search nixpkgs'
|
||||||
alias pu='sudo nix-channel --update && sudo nixos-rebuild boot --upgrade'
|
alias pu='sudo nix-channel --update && sudo nixos-rebuild boot --upgrade'
|
||||||
|
alias pclean='nix-collect-garbage --delete-older-than -7days'
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if (( $+commands[nix-channel] )); then
|
if (( $+commands[nix-channel] )); then
|
||||||
|
@ -120,10 +121,23 @@ if (( $+commands[nix-channel] )); then
|
||||||
alias npsearch='nix search nixpkgs'
|
alias npsearch='nix search nixpkgs'
|
||||||
alias hmu='nix-channel --update && home-manager switch'
|
alias hmu='nix-channel --update && home-manager switch'
|
||||||
alias hms='home-manager switch'
|
alias hms='home-manager switch'
|
||||||
alias hmc='home-manager expire-generations'
|
alias hmc='home-manager expire-generations -7days'
|
||||||
alias hme='home-manager edit'
|
alias hme='home-manager edit'
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Docker shortcuts
|
||||||
|
|
||||||
|
if (( $+commands[docker-compose] )); then
|
||||||
|
alias dcu='docker-compose up '
|
||||||
|
alias dcud='docker-compose up -d '
|
||||||
|
alias dcd='docker-compose down '
|
||||||
|
alias dcl='docker-compose logs -f '
|
||||||
|
alias dprune='docker system prune -a '
|
||||||
|
alias dps='docker ps '
|
||||||
|
alias dstart='docker start '
|
||||||
|
alias dstop=' docker stop '
|
||||||
|
fi
|
||||||
|
|
||||||
# Alias alternatives for commands if they exist
|
# Alias alternatives for commands if they exist
|
||||||
|
|
||||||
if (( $+commands[colordiff] )); then
|
if (( $+commands[colordiff] )); then
|
||||||
|
|
|
@ -1,55 +1,37 @@
|
||||||
# generated by SuperSlicer 2.5.59 on 2023-03-05 at 03:20:56 UTC
|
# generated by SuperSlicer 2.5.59 on 2023-04-08 at 06:43:33 UTC
|
||||||
allow_ip_resolve = 1
|
allow_ip_resolve = 1
|
||||||
auto_switch_preview = 3
|
auto_switch_preview = 2
|
||||||
auto_toolbar_size = 100
|
auto_toolbar_size = 100
|
||||||
autocenter = 0
|
autocenter = 0
|
||||||
background_processing = 0
|
background_processing = 0
|
||||||
check_material_export = 0
|
check_material_export = 0
|
||||||
clear_undo_redo_stack_on_new_project = 1
|
clear_undo_redo_stack_on_new_project = 1
|
||||||
collapsed_sidebar = 0
|
collapsed_sidebar = 0
|
||||||
color = 428dfd
|
color = 296acc
|
||||||
color_dark = 2172eb
|
color_dark = 275cad
|
||||||
color_light = 8bb9fe
|
color_light = 3d83ed
|
||||||
color_mapinulation_panel = 0
|
color_mapinulation_panel = 0
|
||||||
color_very_dark = 0047C7
|
|
||||||
color_very_light = 428cff
|
|
||||||
custom_toolbar_size = 100
|
custom_toolbar_size = 100
|
||||||
date_in_config_file = 1
|
date_in_config_file = 1
|
||||||
default_action_delete_all = 1
|
default_action_delete_all = 1
|
||||||
default_action_on_close_application = none
|
default_action_on_close_application = none
|
||||||
default_action_on_new_project = 1
|
default_action_on_new_project = none
|
||||||
default_action_on_select_preset = none
|
default_action_on_select_preset = none
|
||||||
default_action_preset_on_new_project = 1
|
|
||||||
dlg_settings_layout_mode = 0
|
|
||||||
drop_project_action = 1
|
drop_project_action = 1
|
||||||
export_sources_full_pathnames = 0
|
export_sources_full_pathnames = 0
|
||||||
focus_platter_on_mouse = 1
|
focus_platter_on_mouse = 1
|
||||||
font_size = 0
|
font_size = 0
|
||||||
freecad_path = .
|
freecad_path = .
|
||||||
hide_slice_tooltip = 0
|
hide_slice_tooltip = 0
|
||||||
last_output_path = /Users/kdb424/Desktop
|
|
||||||
last_output_path_removable = /Volumes/PRUSA_MINI
|
|
||||||
new_settings_layout_mode = 0
|
|
||||||
no_controller = 1
|
no_controller = 1
|
||||||
no_defaults = 1
|
no_defaults = 1
|
||||||
notify_release = all
|
notify_release = all
|
||||||
objects_always_expert = 1
|
objects_always_expert = 1
|
||||||
old_settings_layout_mode = 1
|
|
||||||
order_volumes = 1
|
order_volumes = 1
|
||||||
preset_update = 1
|
preset_update = 1
|
||||||
print_host_queue_dialog_column_0 = 80
|
|
||||||
print_host_queue_dialog_column_1 = 80
|
|
||||||
print_host_queue_dialog_column_2 = 80
|
|
||||||
print_host_queue_dialog_column_3 = 80
|
|
||||||
print_host_queue_dialog_column_4 = 80
|
|
||||||
print_host_queue_dialog_column_5 = 46
|
|
||||||
print_host_queue_dialog_height = 60
|
|
||||||
print_host_queue_dialog_width = 30
|
|
||||||
print_host_queue_dialog_x = 1260
|
|
||||||
print_host_queue_dialog_y = 247
|
|
||||||
remember_output_path = 1
|
remember_output_path = 1
|
||||||
remember_output_path_removable = 1
|
remember_output_path_removable = 1
|
||||||
restore_win_position = 0
|
restore_win_position = 1
|
||||||
reverse_mouse_wheel_zoom = 0
|
reverse_mouse_wheel_zoom = 0
|
||||||
search_all_mode = 1
|
search_all_mode = 1
|
||||||
search_category = 1
|
search_category = 1
|
||||||
|
@ -63,13 +45,11 @@ show_hints = 0
|
||||||
show_incompatible_presets = 0
|
show_incompatible_presets = 0
|
||||||
show_overwrite_dialog = 1
|
show_overwrite_dialog = 1
|
||||||
show_splash_screen = 1
|
show_splash_screen = 1
|
||||||
show_splash_screen_random = 0
|
|
||||||
single_instance = 1
|
single_instance = 1
|
||||||
splash_screen_editor = benchy-splashscreen.jpg
|
splash_screen_editor = default
|
||||||
splash_screen_gcodeviewer = prusa-gcodepreview.jpg
|
splash_screen_gcodeviewer = default
|
||||||
suppress_hyperlinks = 1
|
suppress_hyperlinks = 1
|
||||||
tab_icon_size = 32
|
tab_icon_size = 32
|
||||||
tab_settings_layout_mode = 0
|
|
||||||
ui_layout = Standard
|
ui_layout = Standard
|
||||||
use_custom_toolbar_size = 0
|
use_custom_toolbar_size = 0
|
||||||
use_free_camera = 0
|
use_free_camera = 0
|
||||||
|
@ -79,59 +59,14 @@ use_retina_opengl = 1
|
||||||
use_rich_tooltip = 0
|
use_rich_tooltip = 0
|
||||||
version = 2.5.59.2
|
version = 2.5.59.2
|
||||||
version_check = 1
|
version_check = 1
|
||||||
version_online = 2.4.58.4
|
|
||||||
version_online_seen = 2.4.58.4
|
|
||||||
view_mode = expert
|
view_mode = expert
|
||||||
window_mainframe = 10; 34; 3420; 1396; 0
|
window_mainframe = 10; 34; 3420; 1396; 0
|
||||||
window_settings_dialog = 1295; 482; 850; 500; 0
|
|
||||||
|
|
||||||
[arrange]
|
|
||||||
enable_rotation_fff = 0
|
|
||||||
enable_rotation_fff_seq_print = 0
|
|
||||||
min_object_distance_fff = 1.000000
|
|
||||||
min_object_distance_fff_seq_print = 6.000000
|
|
||||||
|
|
||||||
[filaments]
|
|
||||||
Basic ABS VOLCANO @VORON = 1
|
|
||||||
Basic PET @VORON = 1
|
|
||||||
Basic PLA @VORON = 1
|
|
||||||
Basic PLA VOLCANO @VORON = 1
|
|
||||||
Esun ABS = 1
|
|
||||||
Esun ABS @MINI = 1
|
|
||||||
Generic ABS = 1
|
|
||||||
Generic ABS @MINI = 1
|
|
||||||
Generic PLA = 1
|
|
||||||
Hatchbox ABS = 1
|
|
||||||
Hatchbox ABS @MINI = 1
|
|
||||||
Prusament ASA = 1
|
|
||||||
Prusament ASA @MINI = 1
|
|
||||||
Prusament PC Blend = 1
|
|
||||||
Prusament PC Blend @MINI = 1
|
|
||||||
Prusament PC Blend Carbon Fiber = 1
|
|
||||||
Prusament PC Blend Carbon Fiber @MINI = 1
|
|
||||||
|
|
||||||
[presets]
|
[presets]
|
||||||
filament = ABS - KVP VZbot
|
filament = ABS - KVP
|
||||||
physical_printer = Vzbot330 * Vzbot330-Testing
|
physical_printer =
|
||||||
print = VZbot330 45 Degree
|
print = VZbot330 45 Degree - Testing
|
||||||
printer = Vzbot330-Testing
|
printer = Vzbot330-Testing
|
||||||
sla_material =
|
sla_material =
|
||||||
sla_print =
|
sla_print =
|
||||||
|
|
||||||
[recent]
|
|
||||||
config_directory = /Users/kdb424/Downloads
|
|
||||||
printhost_path =
|
|
||||||
printhost_print = 1
|
|
||||||
skein_directory = /Users/kdb424/src/Vz-Printhead-Printed/STLs/hotend mounting
|
|
||||||
|
|
||||||
[recent_projects]
|
|
||||||
1 = /Users/kdb424/Downloads/Gantry_MGN9 v17 v2.3mf
|
|
||||||
2 = /Users/kdb424/Downloads/mgn9 gantry.3mf
|
|
||||||
3 = /Users/kdb424/Downloads/meanwellResume.3mf
|
|
||||||
4 = /Users/kdb424/Downloads/v0 v2sliced.3mf
|
|
||||||
5 = /Users/kdb424/Downloads/plate.3mf
|
|
||||||
6 = /Users/kdb424/Downloads/singlebackplate.3mf
|
|
||||||
7 = /Users/kdb424/src/VoronUsers/printer_mods/chirpy/TipTophat/STLs/Unibody.3mf
|
|
||||||
8 = /Users/kdb424/src/VoronUsers/printer_mods/doubletrouble/V0_Skirt_Mod/accents.3mf
|
|
||||||
9 = /Users/kdb424/src/Voron-0/STLs/reprint.3mf
|
|
||||||
|
|
||||||
|
|
5206
Library/Application Support/SuperSlicer/vendor/PrusaResearch.ini
generated
vendored
5206
Library/Application Support/SuperSlicer/vendor/PrusaResearch.ini
generated
vendored
File diff suppressed because it is too large
Load diff
Loading…
Add table
Reference in a new issue