mirror of
https://github.com/Melon-Bread/gnu-slash-dot-files
synced 2025-08-02 16:04:37 -04:00
Compare commits
7 Commits
45e7d24525
...
master
Author | SHA1 | Date | |
---|---|---|---|
e8f4a3d762 | |||
f109906a5f | |||
2d11df696e | |||
947960bd99 | |||
fcc12892dd | |||
a7f5259e76 | |||
e2d4318f3c |
BIN
.bin/4nxci
BIN
.bin/4nxci
Binary file not shown.
@ -1,3 +1,3 @@
|
|||||||
#!/usr/bin/env bash
|
#!/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
|
yay -S retroarch-git --noconfirm
|
||||||
|
|
||||||
echo 'Updating Cores....'
|
echo 'Updating Cores....'
|
||||||
python ~/Documents/Projects/RetroUFO/RetroUFO.py
|
RetroUFO
|
||||||
|
|
||||||
#echo 'Updating Thumbnails'
|
#echo 'Updating Thumbnails'
|
||||||
#cd "~/.config/retroarch/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
|
|
@ -31,4 +31,3 @@ git_arguments = "--rebase --autostash"
|
|||||||
[commands]
|
[commands]
|
||||||
"RetroArch" = "RA-Update.sh"
|
"RetroArch" = "RA-Update.sh"
|
||||||
|
|
||||||
cleanup = true
|
|
||||||
|
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
|
# Add additional directories to load prezto modules from
|
||||||
#zstyle ':prezto:load' pmodule-dirs $HOME/.zprezto-contrib
|
#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).
|
# Set the Zsh modules to load (man zshmodules).
|
||||||
# zstyle ':prezto:load' zmodule 'attr' 'stat'
|
# zstyle ':prezto:load' zmodule 'attr' 'stat'
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user