1
0
mirror of https://github.com/Melon-Bread/gnu-slash-dot-files synced 2025-08-02 16:04:37 -04:00

Compare commits

..

9 Commits

Author SHA1 Message Date
e8f4a3d762 Removed junk packages 2020-03-30 13:26:43 -04:00
f109906a5f Update zprezto config 2020-03-30 13:25:09 -04:00
2d11df696e Please stop yelling at me 2020-03-30 13:24:07 -04:00
947960bd99 Added heic2png script 2020-03-30 13:18:07 -04:00
fcc12892dd Just install the RetroUFO package and use that 2019-12-20 08:59:28 -05:00
a7f5259e76 Clean up some scripts 2019-12-10 10:16:16 -05:00
e2d4318f3c Added youtube-dl config 2019-12-10 01:03:52 -05:00
45e7d24525 Minior Tweaks 2019-12-05 10:36:37 -05:00
03cd876a8a Added topgrade config 2019-12-05 10:23:56 -05:00
12 changed files with 91 additions and 1244 deletions

Binary file not shown.

View File

@ -1,3 +1,3 @@
#!/usr/bin/env bash
yay -S pcsx2-git citra-canary-git yuzu-canary-git rpcs3-git dolphin-emu-git desmume-git retroarch-git --noconfirm --sudoloop
yay -S pcsx2-git citra-canary-git yuzu-mainline-git rpcs3-git dolphin-emu-git retroarch-git --noconfirm --sudoloop

View File

@ -4,7 +4,7 @@ echo 'Updating RetroArch...'
yay -S retroarch-git --noconfirm
echo 'Updating Cores....'
python ~/Documents/Projects/RetroUFO/RetroUFO.py
RetroUFO
#echo 'Updating Thumbnails'
#cd "~/.config/retroarch/thumbnails/"

File diff suppressed because it is too large Load Diff

BIN
.bin/efwt

Binary file not shown.

Binary file not shown.

42
.bin/heic2png.py Executable file
View File

@ -0,0 +1,42 @@
#!/usr/bin/env python3
"""
Converts every HEIC image in a directory into a PNG image.
This script assumes you have `heif-convert` in your PATH
"""
__author__ = "Melon Bread"
__version__ = "1.0.0"
__license__ = "MIT"
import argparse
import os
import subprocess
def main(args):
""" Main entry point of the app """
working_directory = args.input
for file in os.listdir(working_directory):
if file.upper().endswith('.HEIC'):
print(f'Converting {file}...')
subprocess.Popen(['heif-convert', file, f'{file[:-4]}png']).wait()
else:
print(f"Skipping {file}...")
if __name__ == "__main__":
""" This is executed when run from the command line """
parser = argparse.ArgumentParser()
# Required positional argument
parser.add_argument('-i', '--input', metavar='STRING', required=True,
help='The directory containing the HEIC image files')
# Specify output of "--version"
parser.add_argument(
"--version",
action="version",
version="%(prog)s (version {version})".format(version=__version__))
args = parser.parse_args()
main(args)

BIN
.bin/mkfw

Binary file not shown.

View File

@ -1 +0,0 @@
/home/melon/Games/Linux/pico-8/pico8

33
.config/topgrade.toml Normal file
View File

@ -0,0 +1,33 @@
# Additional git repositories to pull
git_repos = [
# "~/Documents/Projects/*/",
"~/Documents/Git/*/"
]
# Same options as the command line flag
#disable = ["atom", "tmux"]
# List of remote machines with Topgrade installed on them
#remote_topgrades = ["toothless", "pi", "parnas"]
no_retry = true
yay_arguments = "--noconfirm"
# Arguments to pass SSH when upgrading remote systems
#ssh_arguments = "-o ConnectTimeout=2"
# Arguments to pass Git when pulling Repositories
git_arguments = "--rebase --autostash"
# Do not set the terminal title
#set_title = false
# Commands to run before anything
#[pre_commands]
#"Emacs Snapshot" = "rm -rf ~/.emacs.d/elpa.bak && cp -rl ~/.emacs.d/elpa ~/.emacs.d/elpa.bak"
# Custom commands
#[commands]
#"Python Environment" = "~/dev/.env/bin/pip install -i https://pypi.python.org/simple -U --upgrade-strategy eager jupyter"
[commands]
"RetroArch" = "RA-Update.sh"

11
.config/youtube-dl/config Normal file
View File

@ -0,0 +1,11 @@
-o "./%(title)s.%(ext)s"
# Subtitles
--all-subs
# --write-subs en
--embed-subs
# Meta
#--embed-thumbnail
--add-metadata

View File

@ -18,6 +18,9 @@ zstyle ':prezto:*:*' color 'yes'
# Add additional directories to load prezto modules from
#zstyle ':prezto:load' pmodule-dirs $HOME/.zprezto-contrib
# Allow module overrides when pmodule-dirs causes module name collisions
# zstyle ':prezto:load' pmodule-allow-overrides 'yes'
# Set the Zsh modules to load (man zshmodules).
# zstyle ':prezto:load' zmodule 'attr' 'stat'