OSDN Git Service

[update] : change default shell to zsh
authorwatasuke102 <watasuke102@gmail.com>
Thu, 25 Jun 2020 13:25:20 +0000 (22:25 +0900)
committerwatasuke102 <watasuke102@gmail.com>
Thu, 25 Jun 2020 13:25:20 +0000 (22:25 +0900)
channels/i3/airootfs.any/etc/skel/.zshrc [new file with mode: 0644]
channels/i3/config.any
channels/i3/packages.x86_64/shell.x86_64 [new file with mode: 0644]

diff --git a/channels/i3/airootfs.any/etc/skel/.zshrc b/channels/i3/airootfs.any/etc/skel/.zshrc
new file mode 100644 (file)
index 0000000..aaaeb46
--- /dev/null
@@ -0,0 +1,114 @@
+#
+# ~/.zshrc
+#
+#
+# Yamada Hayao 
+# Twitter: @Hayao0819
+# Email  : hayao@fascode.net
+#
+# (c) 2019-2020 Fascode Network.
+#
+
+
+#-- Alias --#
+[[ -f .aliases ]] && source .aliases
+
+
+#-- Completion --#
+[ -e /usr/local/share/zsh-completions ] && fpath=(/usr/local/share/zsh-completions $fpath)
+autoload -U compinit
+compinit -u
+
+
+#-- Archive settings --#
+export ZIPINFOOPT=-OCP932
+export UNZIPOPT=-OCP932
+
+
+#-- Key --#
+# create a zkbd compatible hash;
+# to add other keys to this hash, see: man 5 terminfo
+typeset -A key
+
+key[Home]=${terminfo[khome]}
+
+key[End]=${terminfo[kend]}
+key[Insert]=${terminfo[kich1]}
+key[Delete]=${terminfo[kdch1]}
+key[Up]=${terminfo[kcuu1]}
+key[Down]=${terminfo[kcud1]}
+key[Left]=${terminfo[kcub1]}
+key[Right]=${terminfo[kcuf1]}
+key[PageUp]=${terminfo[kpp]}
+key[PageDown]=${terminfo[knp]}
+
+# setup key accordingly
+[[ -n "${key[Home]}"     ]]  && bindkey  "${key[Home]}"     beginning-of-line
+[[ -n "${key[End]}"      ]]  && bindkey  "${key[End]}"      end-of-line
+[[ -n "${key[Insert]}"   ]]  && bindkey  "${key[Insert]}"   overwrite-mode
+[[ -n "${key[Delete]}"   ]]  && bindkey  "${key[Delete]}"   delete-char
+[[ -n "${key[Up]}"       ]]  && bindkey  "${key[Up]}"       up-line-or-history
+[[ -n "${key[Down]}"     ]]  && bindkey  "${key[Down]}"     down-line-or-history
+[[ -n "${key[Left]}"     ]]  && bindkey  "${key[Left]}"     backward-char
+[[ -n "${key[Right]}"    ]]  && bindkey  "${key[Right]}"    forward-char
+[[ -n "${key[PageUp]}"   ]]  && bindkey  "${key[PageUp]}"   beginning-of-buffer-or-history
+[[ -n "${key[PageDown]}" ]]  && bindkey  "${key[PageDown]}" end-of-buffer-or-history
+
+# Finally, make sure the terminal is in application mode, when zle is
+# active. Only then are the values from $terminfo valid.
+if (( ${+terminfo[smkx]} )) && (( ${+terminfo[rmkx]} )); then
+    function zle-line-init () {
+        printf '%s' "${terminfo[smkx]}"
+    }
+    function zle-line-finish () {
+        printf '%s' "${terminfo[rmkx]}"
+    }
+    zle -N zle-line-init
+    zle -N zle-line-finish
+fi
+
+
+#-- Do not sound --#
+setopt nolistbeep
+setopt nolistbeep
+
+
+#-- Save history. --#
+HISTFILE=~/.zsh_history
+HISTSIZE=100000
+SAVEHIST=100000
+setopt share_history
+
+
+#-- Make colors available --#
+autoload -Uz colors
+colors
+
+
+#-- Pass to the path --#
+[[ -d ~/.bin ]] && export PATH="~/.bin:${PATH}"
+
+
+#-- PROMPT --#
+if [[ ${TERM} = "linux" ]]; then
+    PROMPT='%B%F{red}%(?..%? )%f%b%B%F{red}%n%f%b@%m %B%40<..<%~%<< %b%# '
+else
+    function powerline_precmd() {
+        PS1="$(powerline-go -error $? -shell zsh)"
+    }
+
+    function install_powerline_precmd() {
+        for s in "${precmd_functions[@]}"; do
+            if [ "$s" = "powerline_precmd" ]; then
+                return
+            fi
+        done
+        precmd_functions+=(powerline_precmd)
+    }
+
+    install_powerline_precmd
+fi
+
+#-- Like fish prompt --#
+source /usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh
+source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
index 44995c7..46b5f86 100644 (file)
@@ -13,4 +13,4 @@
 #
 
 # Set the user's default shell.
-usershell="/bin/bash"
+usershell="/bin/zsh"
diff --git a/channels/i3/packages.x86_64/shell.x86_64 b/channels/i3/packages.x86_64/shell.x86_64
new file mode 100644 (file)
index 0000000..5ac7ad8
--- /dev/null
@@ -0,0 +1,26 @@
+#
+# Alter Linux i3wm edition package list
+#
+# Watasuke
+# Twitter: @Watasuke102
+# Email  : Watasuke102@gmail.com
+#
+# (c) 2020 Fascode Network.
+#
+# Shell and powerline
+
+
+# Powerline
+powerline-go
+
+
+# zsh
+zsh
+zsh-autosuggestions
+zsh-completions
+zsh-syntax-highlighting
+
+
+# lsd
+lsd
+lsd-control