Added script to burn ISO using dd

This commit is contained in:
2018-12-03 20:34:32 -05:00
parent 721ca87db9
commit 5573bbb562
6 changed files with 45 additions and 16 deletions

View File

@@ -1,3 +1,5 @@
# header {{{ #
# Neofetch config file
# https://github.com/dylanaraps/neofetch
@@ -8,36 +10,47 @@ print_info() {
info title
info underline
info "OS" distro
# }}} header #
# enabled {{{ #
info "Kernel" kernel
info "Terminal" term
info "Terminal Font" term_font
info "Shell" shell
# info "Font" font
info "Packages" packages
info "WM" wm
info "WM Theme" wm_theme
# info "Font" font
# info "Theme" theme
# info "Icons" icons
info "CPU" cpu
info "CPU Usage" cpu_usage
info "GPU" gpu
# info "CPU Usage" cpu_usage
info "GPU Driver" gpu_driver # Linux only
info "Memory" memory
info "Disk" disk
info "Resolution" resolution
# info "Uptime" uptime
info "Install Date" install_date
info "Song" song
# info "Install Date" install_date
# }}} enabled #
# others {{{ #
# info "Host" model
# info "Uptime" uptime
# info "DE" de
# info "Users" users
# info "Host" model
# info "Kernel" kernel
# info "DE" de
# info "GPU Driver" gpu_driver # Linux only
# info "Battery" battery
# info "Local IP" local_ip
# info "Public IP" public_ip
# info "Locale" locale # This only works on glibc systems.
# }}} others #
# options {{{ #
info line_break
info cols
info line_break
@@ -136,7 +149,8 @@ shell_version="on"
# Flag: --speed_type
# Supports: Linux with 'cpufreq'
# NOTE: Any file in '/sys/devices/system/cpu/cpu0/cpufreq' can be used as a value.
speed_type="bios_limit"
# speed_type="bios_limit"
speed_type="scaling_max_freq"
# CPU speed shorthand
#
@@ -202,7 +216,7 @@ cpu_cores="logical"
# C: 'Intel i7-6500U (4) @ 3.1GHz [27.2°C]'
# F: 'Intel i7-6500U (4) @ 3.1GHz [82.0°F]'
# off: 'Intel i7-6500U (4) @ 3.1GHz'
cpu_temp="off"
cpu_temp="on"
# GPU
@@ -732,3 +746,5 @@ stdout="off"
# NOTE: Don't change this value, neofetch reads this to determine
# how to handle backwards compatibility.
config_version="3.3.0"
# }}} options #