small updates

This commit is contained in:
Michael Chalupiak 2024-10-07 13:02:29 -04:00
parent 196d590348
commit c160fcbf55
5 changed files with 17 additions and 3 deletions

View File

@ -170,3 +170,5 @@ alias enter-dev='. enter-dev.sh'
alias ssh='TERM="xterm-256color" ssh'
export DISABLE_TELEMETRY=YES
[ -f "/home/mikec/.ghcup/env" ] && . "/home/mikec/.ghcup/env" # ghcup-env

View File

@ -4,3 +4,4 @@ source /home/mikec/.config/mutt/accounts/mikecchalupiak@outlook.com.muttrc
macro index,pager i1 '<sync-mailbox><enter-command>source /home/mikec/.config/mutt/accounts/mikecchalupiak@outlook.com.muttrc<enter><change-folder>!<enter>;<check-stats>' "switch to mikecchalupiak@outlook.com"
macro index,pager i2 '<sync-mailbox><enter-command>source /home/mikec/.config/mutt/accounts/chalupmc@rose-hulman.edu.muttrc<enter><change-folder>!<enter>;<check-stats>' "switch to chalupmc@rose-hulman.edu"
macro index,pager i3 '<sync-mailbox><enter-command>source /home/mikec/.config/mutt/accounts/mikec@mchalupiak.com.muttrc<enter><change-folder>!<enter>;<check-stats>' "switch to mikec@mchalupiak.com"
set use_threads=reverse sort=last-date

View File

@ -11,3 +11,5 @@ export CLASSPATH="/usr/share/java/junit.jar:/usr/share/java/hamcrest/core.jar"
# Added by Toolbox App
export PATH="$PATH:/home/mikec/.local/share/JetBrains/Toolbox/scripts"
[ -f "/home/mikec/.ghcup/env" ] && . "/home/mikec/.ghcup/env" # ghcup-env

View File

@ -1,3 +1,12 @@
#!/bin/sh
GAMES=$(find /home/mikec/Documents/Games/ROMS/N64 -iname "*.zip" | bemenu -i --fn "Cascadia Code 12")
[ -z "$GAMES" ] || mupen64plus "$GAMES"
# MON=$(xrandr | grep ' connected' | cut -d' ' -f1 | dmenu -i)
GAMES=$(find /home/mikec/Documents/Games/ROMS/N64 -iname "*.zip" | dmenu -i -l 10)
[ -z "$GAMES" ] && exit
# GAME=$(mktemp)
# RES=$(xrandr | grep "$MON" | sed -E 's/.*connected (primary )?([0-9]*x[0-9]*).*/\2/')
# echo "$RES"
# rm -r "$GAME"
# unzip "$GAMES" -d "$GAME"
# mupen64plus --resolution "$RES" --windowed --gfx mupen64plus-video-glide64mk2 "$GAME"/*
# rm -r "$GAME"
RMG --fullscreen "$GAMES"

View File

@ -1,3 +1,3 @@
#!/bin/sh
GAMES=$(find /home/mikec/Documents/Games/ROMS/NES/USA -iname "*.nes" | bemenu -i --fn "Cascadia Code 12")
GAMES=$(find /home/mikec/Documents/Games/ROMS/NES/USA -iname "*.nes" | dmenu -i)
[ -z "$GAMES" ] || fceux "$GAMES"