General code cleanup

This commit is contained in:
Eric Torres
2019-01-20 22:02:39 -08:00
parent 2e6c398cd1
commit 24c4ae781b
4 changed files with 39 additions and 35 deletions

0
audiotrim.sh Executable file → Normal file
View File

9
ddusb.py Executable file → Normal file
View File

@ -2,14 +2,15 @@
"""Write an ISO image to a usb drive using dd.""" """Write an ISO image to a usb drive using dd."""
import argparse import argparse
import configparser
import pathlib import pathlib
import subprocess import subprocess
# TODO add a config file for blacklisting certain devices e.g. /dev/sda if __name__ == '__main__':
parser = argparse.ArgumentParser() parser = argparse.ArgumentParser()
parser.add_argument("-b", "--bs", default=512, help="block size", metavar="bs") parser.add_argument("-b", "--bs",
default=512,
help="block size",
metavar="bs")
parser.add_argument("input_file", help="input file to write") parser.add_argument("input_file", help="input file to write")
parser.add_argument("output_file", help="output block device") parser.add_argument("output_file", help="output block device")
args = parser.parse_args() args = parser.parse_args()

11
drivetemp.py Executable file → Normal file
View File

@ -13,7 +13,11 @@ import argparse
import pathlib import pathlib
import subprocess import subprocess
# ========== Constants ==========
DUMP_CMD = ['skdump', '--temperature']
# ========== Functions ==========
def verify_device_node(query): def verify_device_node(query):
"""Check if query is a device node. """Check if query is a device node.
:param query: input that refers to a device :param query: input that refers to a device
@ -31,11 +35,10 @@ def retrieve_smart_temp(device_node):
:returns: output of skdump in mKelvin :returns: output of skdump in mKelvin
:rtype: float :rtype: float
""" """
dump_cmd = subprocess.run(['sudo', 'skdump', '--temperature', temp = subprocess.run(DUMP_CMD + device_node,
device_node],
capture_output=True, capture_output=True,
text=True) text=True).stdout
return float(dump_cmd.stdout) return float(temp)
def convert_to_celsius(mkel_temp): def convert_to_celsius(mkel_temp):

4
fless.sh Executable file → Normal file
View File

@ -4,7 +4,7 @@
# - fd (soft) # - fd (soft)
# - fzf # - fzf
_help() { help() {
cat << EOF cat << EOF
Usage: fless [-h|--help] [-b|--boot] [-d|--dir directory] [-e|--etc] Usage: fless [-h|--help] [-b|--boot] [-d|--dir directory] [-e|--etc]
Options: Options:
@ -58,7 +58,7 @@ while true; do
continue continue
;; ;;
'-h'|'--help') '-h'|'--help')
printHelp help
exit exit
;; ;;
--) --)