various changes for PSP emulators and tmux

This commit is contained in:
Tyler Starr 2023-11-11 22:28:44 -08:00
parent fe6256a0b3
commit 6133349d00
7 changed files with 30 additions and 5 deletions

View File

@ -15,16 +15,16 @@
url = "https://github.com/wbthomason/packer.nvim.git" url = "https://github.com/wbthomason/packer.nvim.git"
refreshPeriod = "168h" refreshPeriod = "168h"
[".tmux/plugins/tpm"]
type = "git-repo"
url = "https://github.com/tmux-plugins/tpm"
refreshPeriod = "168h"
[".task"] [".task"]
type = "git-repo" type = "git-repo"
url = "git@github.com:starr-dusT/task.git" url = "git@github.com:starr-dusT/task.git"
refreshPeriod = "168h" refreshPeriod = "168h"
["documents/zet"]
type = "git-repo"
url = "git@github.com:starr-dusT/zet.git"
refreshPeriod = "168h"
### OLD ### ### OLD ###
#[".config/xmonad/xmonad"] #[".config/xmonad/xmonad"]
# type = "git-repo" # type = "git-repo"

View File

@ -13,6 +13,13 @@ env:
# `infocmp xterm-256color`. # `infocmp xterm-256color`.
TERM: xterm-256color TERM: xterm-256color
shell:
program: /run/current-system/sw/bin/bash
args:
- -l
- -c
- "tmux attach || tmux"
# Font configuration (changes require restart) # Font configuration (changes require restart)
font: font:
# Normal (roman) font face # Normal (roman) font face

View File

@ -92,3 +92,11 @@ set -g visual-activity on
# Allow the arrow key to be used immediately after changing windows # Allow the arrow key to be used immediately after changing windows
set-option -g repeat-time 0 set-option -g repeat-time 0
# Install plugin manager
set -g @plugin 'fcsonline/tmux-thumbs'
run-shell ~/.tmux/plugins/tmux-thumbs/tmux-thumbs.tmux
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
set -g @plugin 'tmux-plugins/tpm'
run '~/.tmux/plugins/tpm/tpm'

View File

@ -24,6 +24,10 @@
path = "/home/${user}/.local/share/yuzu/nand/user/save/0000000000000000/705C6CE0127692D598F92E68B640D644"; path = "/home/${user}/.local/share/yuzu/nand/user/save/0000000000000000/705C6CE0127692D598F92E68B640D644";
devices = [ "kestrel" ]; devices = [ "kestrel" ];
}; };
"PSP Saves" = {
path = "/home/${user}/.config/ppsspp/PSP/SAVEDATA";
devices = [ "kestrel" ];
};
}; };
}; };
} }

View File

@ -25,6 +25,10 @@
path = "/home/${user}/.local/share/yuzu/nand/user/save/0000000000000000/705C6CE0127692D598F92E68B640D644"; path = "/home/${user}/.local/share/yuzu/nand/user/save/0000000000000000/705C6CE0127692D598F92E68B640D644";
devices = [ "bulwark" ]; devices = [ "bulwark" ];
}; };
"PSP Saves" = {
path = "/home/${user}/.config/ppsspp/PSP/SAVEDATA";
devices = [ "bulwark" ];
};
}; };
}; };
} }

View File

@ -19,6 +19,7 @@ in {
pkgs.steamtinkerlaunch pkgs.steamtinkerlaunch
pkgs-unstable.yuzu-early-access pkgs-unstable.yuzu-early-access
pkgs.dolphin-emu pkgs.dolphin-emu
pkgs-unstable.ppsspp
pkgs-unstable.sunshine pkgs-unstable.sunshine
pkgs-unstable.moonlight-qt pkgs-unstable.moonlight-qt
]; ];

View File

@ -41,5 +41,6 @@ in {
pkgs-unstable.taskwarrior-tui pkgs-unstable.taskwarrior-tui
pkgs-unstable.timewarrior pkgs-unstable.timewarrior
]; ];
}; };
} }