This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM archlinux:latest | |
# Update | |
RUN pacman -Syy --noconfirm | |
RUN pacman-key --init | |
RUN pacman -S --noconfirm archlinux-keyring | |
RUN pacman -Syu --overwrite "*" --noconfirm | |
# Install dependencies | |
RUN pacman -S --noconfirm --overwrite "*" libliftoff egl-wayland xcb-util-xrm xcb-util-errors xcb-util-cursor libxkbcommon-x11 openvr libdisplay-info lcms2 libavif stb glm ncurses readline libunistring libidn2 libnghttp2 libnghttp3 libpsl zlib openssl libssh2 xz zstd libcap util-linux-libs libassuan npth libxcrypt libseccomp libffi libbpf ninja mpdecimal python python-tqdm meson cppdap hicolor-icon-theme jsoncpp libuv rhash cmake m4 diffutils db5.3 perl autoconf automake jansson binutils bison debugedit fakeroot flex libmpc libisl gcc groff libtool gc guile make patch pkgconf sudo texinfo which base-devel xf86-video-vesa xorg-bdftopcf libpipeline less man-db xorg-docs xorg-font-util xorg-fonts-alias-100dpi xorg-fonts-100dpi xorg-fonts-alias-75dpi xorg-fonts-75dpi xorg-fonts-encodings xorgproto libice xorg-iceauth libpn |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"dwarfs": | |
{ | |
"wine": "https://github.com/flatimage/flatimage-wine/releases/download/continuous_wine/ge-wine-lutris-GE-Proton8-26-x86_64.dwarfs", | |
"retroarch": "https://github.com/flatimage/flatimage-retroarch/releases/download/1edf304/retroarch.dwarfs", | |
"pcsx2": "https://github.com/flatimage/flatimage-pcsx2/releases/download/c611066/pcsx2.dwarfs", | |
"yuzu": "https://github.com/flatimage/flatimage-yuzu/releases/download/1037062/yuzu.dwarfs", | |
"rpcs3": "https://github.com/flatimage/flatimage-rpcs3/releases/download/3f3380f/rpcs3.dwarfs" | |
}, | |
"base": |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"linux": | |
{ | |
"base": "https://github.com/gameimage/runners/releases/download/5ce2517-linux-gnu-x86_64/linux.tar.xz" | |
}, | |
"rpcs3": | |
{ | |
"base": "https://github.com/flatimage/flatimage-rpcs3/releases/download/3f3380f/rpcs3.tar.xz", | |
"dwarfs": "https://github.com/flatimage/flatimage-rpcs3/releases/download/3f3380f/rpcs3.dwarfs" | |
}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function fish_mode_prompt --description 'Displays the current mode' | |
# Do nothing if not in vi mode | |
if test "$fish_key_bindings" = "fish_vi_key_bindings" | |
switch $fish_bind_mode | |
case default | |
set_color --bold red | |
echo 🅽 | |
case insert | |
set_color --bold green | |
echo 🅸 |