Skip to content

Commit 6a1af27

Browse files
Merge pull request #89 from jcchikikomori/release/2.0.7
Release/2.0.7
2 parents 52495fb + 645b90a commit 6a1af27

File tree

39 files changed

+722
-90
lines changed

39 files changed

+722
-90
lines changed

.github/workflows/ci-unit-test.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,9 @@ jobs:
3535
- name: Execute post-setup (pre-commit)
3636
run: |
3737
./linux/zsh/bin/dotfiles-python--pre-commit
38+
- name: Execute post-setup (php)
39+
run: |
40+
./linux/zsh/bin/dotfiles-php install
3841
- name: Simulate Stowing
3942
if: always()
4043
run: |
@@ -83,6 +86,9 @@ jobs:
8386
- name: Execute post-setup (pre-commit)
8487
run: |
8588
./linux/zsh/bin/dotfiles-python--pre-commit
89+
- name: Execute post-setup (php)
90+
run: |
91+
./linux/zsh/bin/dotfiles-php install
8692
- name: Simulate Stowing
8793
if: always()
8894
run: |
@@ -131,6 +137,9 @@ jobs:
131137
- name: Execute post-setup (pre-commit)
132138
run: |
133139
./linux/zsh/bin/dotfiles-python--pre-commit
140+
- name: Execute post-setup (php)
141+
run: |
142+
./linux/zsh/bin/dotfiles-php install
134143
- name: Simulate Stowing
135144
if: always()
136145
run: |

.gitignore

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,23 @@ linux/vscode/.vscode/argv.json
3030
!**/vscode/.vscode-server/data/User/*
3131
**/vscode/.vscode/extensions/
3232

33+
# Docker
34+
linux/zsh/.config/systemd/user/default.target.wants/docker.service
35+
linux/zsh/.config/systemd/user/docker.service
36+
linux/zsh/.config/systemd/user/sockets.target.wants/docker.socket
37+
linux/zsh/bin/containerd
38+
linux/zsh/bin/containerd-shim-runc-v2
39+
linux/zsh/bin/ctr
40+
linux/zsh/bin/docker
41+
linux/zsh/bin/docker-init
42+
linux/zsh/bin/docker-proxy
43+
linux/zsh/bin/dockerd
44+
linux/zsh/bin/dockerd-rootless-setuptool.sh
45+
linux/zsh/bin/dockerd-rootless.sh
46+
linux/zsh/bin/rootlesskit
47+
linux/zsh/bin/runc
48+
linux/zsh/bin/vpnkit
49+
3350
# DXVK
3451
linux/dxvk/.dxvk/cache/
3552
linux/dxvk/.dxvk/log/
@@ -42,3 +59,10 @@ linux/dxvk/.dxvk/log/
4259
.currentdir
4360
.currentuser
4461
linux/systems/.dotfiles-python-version
62+
63+
# EmuDeck
64+
linux/zsh/.config/systemd/user/EmuDeckCloudSync.service
65+
# Other services (such as appimagelauncherd, sdgyrodsu, etc.)
66+
linux/zsh/.config/systemd/user/default.target.wants/*
67+
# Steam Deck Gyro DSU service
68+
linux/zsh/.config/systemd/user/sdgyrodsu.service

arch/setup.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,10 @@ fi
4040
# Compilation Cache
4141
sudo pacman -S --noconfirm --noprogressbar ccache
4242

43-
# NVM
43+
# Programming languages
4444
sudo pacman -S --noconfirm --noprogressbar chaotic-aur/nvm
45+
sudo pacman -S --noconfirm --noprogressbar rbenv pyenv
46+
sudo pacman -S --noconfirm --noprogressbar aur/phpenv-git
4547

4648
# Workarounds & Misc software
4749
sudo pacman -S --noconfirm --noprogressbar aur/pam_ssh_agent_auth

arch/stowme.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@
77
sh $HOME/.dotfiles/linux/zsh/bin/dotfiles-cleanup
88
sh $HOME/.dotfiles/linux/zsh/bin/dotfiles-ssh
99
cd $HOME || return
10-
dotstow stow bash zsh git antigen tmux tmuxp vim vscode dxvk systems wireplumber
10+
dotstow stow bash zsh git antigen tmux tmuxp vim vscode dxvk systems flatpak alacritty wireplumber flags lindbergh
1111
exit 0

debian/stowme.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
sh $HOME/.dotfiles/linux/zsh/bin/dotfiles-cleanup
33
sh $HOME/.dotfiles/linux/zsh/bin/dotfiles-ssh
44
cd $HOME || return
5-
dotstow stow bash zsh git antigen tmux tmuxp vim vscode dxvk systems wireplumber
5+
dotstow stow bash zsh git antigen tmux tmuxp vim vscode dxvk systems flatpak alacritty wireplumber flags
66
exit 0

linux/systems/.alacritty.toml renamed to linux/alacritty/.config/alacritty/alacritty.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -92,22 +92,22 @@ import = ["~/.config/alacritty/themes/themes/vscode.toml"]
9292
TERM = "xterm-256color"
9393

9494
[font]
95-
size = 10.0
95+
size = 10
9696

9797
[font.bold]
98-
family = "Fira Code"
98+
family = "JetBrainsMono Nerd Font Mono"
9999
style = "Bold"
100100

101101
[font.bold_italic]
102-
family = "Fira Code"
102+
family = "JetBrainsMono Nerd Font Mono"
103103
style = "Bold Italic"
104104

105105
[font.italic]
106-
family = "Fira Code"
106+
family = "JetBrainsMono Nerd Font Mono"
107107
style = "Italic"
108108

109109
[font.normal]
110-
family = "Fira Code"
110+
family = "JetBrainsMono Nerd Font Mono"
111111
style = "Regular"
112112

113113
[font.offset]
File renamed without changes.

linux/bash/.bashrc.d/distro renamed to linux/bash/.bashrc.d/01-distro

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ if [ -f /etc/os-release ]; then
1313
arch|garuda|manjaro)
1414
# Arch-based systems
1515
export MAKEFLAGS="-j$(nproc)"
16+
# Docker support (rootless)
17+
export DOCKER_HOST=unix://$XDG_RUNTIME_DIR/docker.sock
1618
;;
1719
bazzite)
1820
echo -e "\nWarning: Bazzite is not officially supported. Proceed with caution."
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)