mirror of
https://github.com/Melon-Bread/gnu-slash-dot-files
synced 2025-08-02 16:04:37 -04:00
Compare commits
9 Commits
bb610e7aba
...
master
Author | SHA1 | Date | |
---|---|---|---|
e8f4a3d762 | |||
f109906a5f | |||
2d11df696e | |||
947960bd99 | |||
fcc12892dd | |||
a7f5259e76 | |||
e2d4318f3c | |||
45e7d24525 | |||
03cd876a8a |
BIN
.bin/4nxci
BIN
.bin/4nxci
Binary file not shown.
@ -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
|
||||
|
@ -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/"
|
||||
|
1241
.bin/activate
1241
.bin/activate
File diff suppressed because it is too large
Load Diff
BIN
.bin/hacbrewpack
BIN
.bin/hacbrewpack
Binary file not shown.
42
.bin/heic2png.py
Executable file
42
.bin/heic2png.py
Executable 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)
|
@ -1 +0,0 @@
|
||||
/home/melon/Games/Linux/pico-8/pico8
|
33
.config/topgrade.toml
Normal file
33
.config/topgrade.toml
Normal 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
11
.config/youtube-dl/config
Normal file
@ -0,0 +1,11 @@
|
||||
-o "./%(title)s.%(ext)s"
|
||||
|
||||
|
||||
# Subtitles
|
||||
--all-subs
|
||||
# --write-subs en
|
||||
--embed-subs
|
||||
|
||||
# Meta
|
||||
#--embed-thumbnail
|
||||
--add-metadata
|
@ -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'
|
||||
|
||||
|
Reference in New Issue
Block a user