Compare commits

...

7 Commits

13 changed files with 22 additions and 16 deletions

3
.gitignore vendored
View File

@ -8,3 +8,6 @@
# Symlink
install.run
# ???
.git

7
.gitmodules vendored
View File

@ -1,3 +1,6 @@
[submodule "etc/chrony/sources.d/jauderho-nts-servers"]
path = etc/chrony/sources.d/jauderho-nts-servers
[submodule "submodules/jauderho-nts-servers"]
path = submodules/jauderho-nts-servers
url = https://github.com/jauderho/nts-servers.git
[submodule "submodules/SteamDeckScreenLock"]
path = submodules/SteamDeckScreenLock
url = https://github.com/RHOPKINS13/SteamDeckScreenLock.git

View File

@ -79,11 +79,6 @@
# I am not developing in detached head state, I generally want to compile
# a specific version of a program and I know how to get out of it
detachedHead = false
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[status]
submodulesummary = 1
[submodule]

View File

@ -14,7 +14,7 @@ default_language_version:
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
rev: v4.5.0
hooks:
- id: check-added-large-files
- id: check-case-conflict

View File

@ -79,11 +79,6 @@
# I am not developing in detached head state, I generally want to compile
# a specific version of a program and I know how to get out of it
detachedHead = false
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[status]
submodulesummary = 1
[submodule]

View File

@ -1 +1,2 @@
jauderho-nts.sources
jauderho-nts-servers

@ -1 +0,0 @@
Subproject commit 3577d61431e7223d7998f94757c51649a12a836d

View File

@ -0,0 +1 @@
../../../submodules/jauderho-nts-servers

1
etc/xdg/autostart/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
SteamOS-kscreenlocker.desktop

View File

@ -0,0 +1 @@
../../../submodules/SteamDeckScreenLock/screenlock.desktop

View File

@ -49,6 +49,8 @@ if [ -f "$MIKAELA_GREP" ]; then
bash -x .mikaela_install
fi
(git lfs install | true &)
set +x
# vim : set ft=sh :
#chmod 700 $HOME -R

View File

@ -131,7 +131,9 @@ fi
#shopt -s autocd
# Show the hostname, uptime and users logged in on shell start
(hostname &)
if hash hostname 2>/dev/null; then
(hostname &)
fi
(uptime &)
(echo "")
if [[ $UNAME != Darwin ]]; then

View File

@ -87,7 +87,9 @@ zstyle ':completion:*:*:kill:*:processes' list-colors '=(#b) #([0-9]#)*=0=01;31'
zstyle ':completion:*:kill:*' command 'ps -u $USER -o pid,%cpu,tty,cputime,cmd'
# Show the hostname, uptime and users logged in on shell start
(hostname&)
if hash hostname 2>/dev/null; then
(hostname&)
fi
(uptime&)
(echo "")

@ -0,0 +1 @@
Subproject commit 7c23c1cbff88ca28f8301edcee3282e458c432ab