Skip to content

Commit 2b06828

Browse files
committed
refactor 🎨(core): configuration multi platform (#815)
Signed-off-by: Luis Mayta <luis@hadenlabs.com>
1 parent 59ce9f4 commit 2b06828

File tree

21 files changed

+85
-227
lines changed

21 files changed

+85
-227
lines changed

β€ŽREADME.mdβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
1313
-->
1414

15-
[![Latest Release](https://img.shields.io/github/release/luismayta/dotfiles)](https://github.com/luismayta/dotfiles/releases) [![Lint](https://img.shields.io/github/workflow/status/luismayta/dotfiles/lint-code)](https://github.com/luismayta/dotfiles/actions?workflow=lint-code) [![CI](https://img.shields.io/github/workflow/status/luismayta/dotfiles/ci)](https://github.com/luismayta/dotfiles/actions?workflow=ci) [![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white)](https://github.com/pre-commit/pre-commit) [![Conventional Commits](https://img.shields.io/badge/Conventional%20Commits-1.0.0-yellow)](https://conventionalcommits.org) [![KeepAChangelog](https://img.shields.io/badge/changelog-Keep%20a%20Changelog%20v1.0.0-orange)](https://keepachangelog.com)
15+
[![Latest Release](https://img.shields.io/github/release/luismayta/dotfiles)](https://github.com/luismayta/dotfiles/releases) [![Version](https://img.shields.io/badge/version-0.0.0-df5e88)](https://img.shields.io/github/release/luismayta/dotfiles) [![Lint](https://img.shields.io/github/workflow/status/luismayta/dotfiles/lint-code)](https://github.com/luismayta/dotfiles/actions?workflow=lint-code) [![CI](https://img.shields.io/github/workflow/status/luismayta/dotfiles/ci)](https://github.com/luismayta/dotfiles/actions?workflow=ci) [![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white)](https://github.com/pre-commit/pre-commit) [![Conventional Commits](https://img.shields.io/badge/Conventional%20Commits-1.0.0-yellow)](https://conventionalcommits.org) [![KeepAChangelog](https://img.shields.io/badge/changelog-Keep%20a%20Changelog%20v1.0.0-orange)](https://keepachangelog.com)
1616

1717
# dotfiles
1818

β€Žarchlinux.shβ€Ž

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ packages=(
2020
i3blocks-gaps-git
2121
jack2 # audio
2222
jq
23-
lxappearance # gtk themeing
23+
lxappearance # gtk theming
2424
neovim
2525
pandoc
2626
pavucontrol # audio control
@@ -44,11 +44,11 @@ packages=(
4444
ttf-monaco
4545
xclip
4646
zathura # pdf viewer
47-
zathura-pdf-poppler # pdf pluggin
47+
zathura-pdf-poppler # pdf plugin
4848
ksh
4949
zsh
5050
)
5151

5252
for package in "${packages[@]}"; do
5353
yay -S --noconfirm "${package}"
54-
done
54+
done

β€Žbin/dotfiles::upgradeβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env zsh
1+
#!/usr/bin/env ksh
22

33
message_info "Upgrade for dotfiles"
44
cd "${DOTFILES_DIR}" && git pull origin main && cd - || return
@@ -17,4 +17,4 @@ cp -rf "${DOTFILES_DIR}/conf/shell/bashrc" "${HOME}/.bashrc"
1717

1818
message_info "Start Sync config"
1919
rsync -avzh --progress "${DOTFILES_DIR}/config/" "${HOME}/.config/"
20-
message_success "Finish Sync config"
20+
message_success "Finish Sync config"

β€Žbin/message_errorβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env zsh
1+
#!/usr/bin/env ksh
22

33
CLEAR='\033[0m'
44
RED="\033[0;31m"

β€Žbin/message_infoβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env zsh
1+
#!/usr/bin/env ksh
22

33
CLEAR='\033[0m'
44
LIGHT_GREEN='\033[1;32m'

β€Žbin/message_successβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env zsh
1+
#!/usr/bin/env ksh
22

33
CLEAR='\033[0m'
44
GREEN="\033[0;32m"

β€Žbin/message_warningβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env zsh
1+
#!/usr/bin/env ksh
22
CLEAR='\033[0m'
33
YELLOW="\033[0;33m"
44

β€Žbin/path_appendβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
#!/usr/bin/env zsh
1+
#!/usr/bin/env ksh
22

33
path::append "${1}"

β€Žbin/path_prependβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
#!/usr/bin/env zsh
1+
#!/usr/bin/env ksh
22

33
path::prepend "${1}"

β€Žprovision/generators/README.yamlβ€Ž

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ badges:
2424
- name: Latest Release
2525
image: https://img.shields.io/github/release/luismayta/dotfiles
2626
url: https://github.com/luismayta/dotfiles/releases
27+
- name: Version
28+
image: https://img.shields.io/badge/version-0.0.0-df5e88
29+
url: https://img.shields.io/github/release/luismayta/dotfiles
2730
- name: Lint
2831
image: https://img.shields.io/github/workflow/status/luismayta/dotfiles/lint-code
2932
url: https://github.com/luismayta/dotfiles/actions?workflow=lint-code

0 commit comments

Comments
Β (0)