dartokloning / Debian Post Installation
0 likes
0 forks
1 files
Last active
Debian Post Installation
| 1 | #!/bin/bash |
| 2 | # |
| 3 | # debian-post-install.sh |
| 4 | # |
| 5 | # Bootstrap Debian fresh install: |
| 6 | # - sudo + add user to sudo group |
| 7 | # - vnStat |
| 8 | # - Vim |
| 9 | # - sync global .bashrc / shell prompt / Fastfetch config |
| 10 | # - UFW firewall |
dartokloning / Fastfetch config for macOS
0 likes
0 forks
1 files
Last active
| 1 | { |
| 2 | "$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json", |
| 3 | |
| 4 | "display": { |
| 5 | "separator": ": ", |
| 6 | "showErrors": false |
| 7 | }, |
| 8 | |
| 9 | "modules": [ |
| 10 | "title", |
dartokloning / Sync .zshrc for all users
0 likes
0 forks
1 files
Last active
| 1 | #!/bin/bash |
| 2 | # |
| 3 | # sync-zshrc-all.sh |
| 4 | # |
| 5 | # Sinkronisasi konfigurasi Zsh GLOBAL untuk macOS dari Gist. |
| 6 | # |
| 7 | # Remote Gist: |
| 8 | # .zshrc -> /usr/local/etc/global-zshrc.zsh |
| 9 | # shell-prompt.zsh -> /usr/local/etc/shell-prompt.zsh |
| 10 | # config.jsonc -> /usr/local/etc/fastfetch/config.jsonc |
dartokloning / .zshrc for macOS
0 likes
0 forks
1 files
Last active
| 1 | # ~/.zshrc - macOS Tahoe / Zsh |
| 2 | |
| 3 | # Hanya jalankan konfigurasi ini pada shell interaktif. |
| 4 | [[ -o interactive ]] || return |
| 5 | |
| 6 | # ----------------------------------------------------------------------------- |
| 7 | # Homebrew (Apple Silicon) |
| 8 | # ----------------------------------------------------------------------------- |
| 9 | if [[ -x /opt/homebrew/bin/brew ]]; then |
| 10 | eval "$(/opt/homebrew/bin/brew shellenv)" |
dartokloning / Synth Shell for ZSH
0 likes
0 forks
1 files
Last active
# shell-prompt.zsh # Powerline-style prompt untuk Zsh di macOS Tahoe. # Diadaptasi dari konfigurasi synth-shell Bash.
| 1 | # shell-prompt.zsh |
| 2 | # Powerline-style prompt untuk Zsh di macOS Tahoe. |
| 3 | # Diadaptasi dari konfigurasi synth-shell Bash. |
| 4 | # Membutuhkan Nerd Font agar icon dapat tampil dengan benar. |
| 5 | |
| 6 | [[ -o interactive ]] || return |
| 7 | |
| 8 | # ----------------------------------------------------------------------------- |
| 9 | # Konfigurasi tampilan |
| 10 | # ----------------------------------------------------------------------------- |
dartokloning / Sync .bashrc to All Users
0 likes
0 forks
1 files
Last active
Automatically sync .bashrc for all users for Administrator.
| 1 | #!/bin/bash |
| 2 | # |
| 3 | # sync-bashrc-all.sh (v2) |
| 4 | # |
| 5 | # Skrip all-in-one: |
| 6 | # 0. Pastikan dependency (vivid, fastfetch) terinstall via apt |
| 7 | # 1. Cek /etc/skel/.bashrc vs versi remote (gist) -> update kalau beda |
| 8 | # 2. Cek /etc/shell-prompt.sh vs versi remote (gist) -> update kalau beda |
| 9 | # 3. Cek /etc/fastfetch/config.jsonc vs versi remote (gist) -> update kalau beda |
| 10 | # 4. Terapkan /etc/skel/.bashrc ke semua user existing di /home yang |
dartokloning / Fastfetch Config
0 likes
0 forks
1 files
Last active
neofetch-like tool for fetching system information
| 1 | { |
| 2 | "$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json", |
| 3 | |
| 4 | "display": { |
| 5 | "separator": ": ", |
| 6 | "showErrors": false |
| 7 | }, |
| 8 | |
| 9 | "modules": [ |
| 10 | "title", |
dartokloning / Neowofetch
0 likes
0 forks
1 files
Last active
Shows Linux System Information with Distribution Logo
| 1 | # See this wiki page for more info: |
| 2 | # https://github.com/dylanaraps/neofetch/wiki/Customizing-Info |
| 3 | print_info() { |
| 4 | info title |
| 5 | info underline |
| 6 | |
| 7 | info "OS" distro |
| 8 | info "Host" model |
| 9 | info "Kernel" kernel |
| 10 | info "Uptime" uptime |
dartokloning / .bashrc with synth-shell
0 likes
0 forks
1 files
Last active
Indonesian date time, synth-shell, custom LS_COLORS with vivid
| 1 | # ~/.bashrc: executed by bash(1) for non-login shells. |
| 2 | # see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) |
| 3 | # for examples |
| 4 | |
| 5 | # If not running interactively, don't do anything |
| 6 | case $- in |
| 7 | *i*) ;; |
| 8 | *) return;; |
| 9 | esac |
dartokloning / Synth-Shell
0 likes
0 forks
1 files
Last active
Customization of synth-shell for personal use
| 1 | #!/usr/bin/env bash |
| 2 | |
| 3 | ## |
| 4 | ## |
| 5 | ## Visit for instructions and more information: |
| 6 | ## https://github.com/andresgongora/synth-shell/ |
| 7 | ## |
| 8 | ## |
| 9 | |
| 10 | ## |
Newer
Older