mirror of
https://github.com/zedsalim/debian-z.git
synced 2025-12-06 03:19:28 +00:00
switching to ufetch
This commit is contained in:
parent
290141c878
commit
62e7e59f9e
4 changed files with 91 additions and 4 deletions
|
|
@ -47,7 +47,9 @@ sudo nala install -y xfce4-settings xfce4-power-manager
|
||||||
sudo nala install -y pulseaudio alsa-utils pavucontrol volumeicon-alsa
|
sudo nala install -y pulseaudio alsa-utils pavucontrol volumeicon-alsa
|
||||||
|
|
||||||
# System Information and Monitoring
|
# System Information and Monitoring
|
||||||
sudo nala install -y neofetch htop
|
sudo nala install -y htop
|
||||||
|
|
||||||
|
# sudo nala install -y neofetch
|
||||||
|
|
||||||
# Screenshots
|
# Screenshots
|
||||||
sudo nala install -y flameshot
|
sudo nala install -y flameshot
|
||||||
|
|
|
||||||
|
|
@ -38,12 +38,13 @@ cp -r config/scripts/ ~/.config
|
||||||
cp -r config/alacritty/ ~/.config
|
cp -r config/alacritty/ ~/.config
|
||||||
cp -r config/dunst/ ~/.config
|
cp -r config/dunst/ ~/.config
|
||||||
cp -r config/rofi/ ~/.config
|
cp -r config/rofi/ ~/.config
|
||||||
cp -r config/neofetch/ ~/.config
|
# cp -r config/neofetch/ ~/.config
|
||||||
cp -r config/ranger/ ~/.config
|
cp -r config/ranger/ ~/.config
|
||||||
cp -r config/polybar/ ~/.config
|
cp -r config/polybar/ ~/.config
|
||||||
cp -r config/zathura/ ~/.config
|
cp -r config/zathura/ ~/.config
|
||||||
cp config/guide.pdf ~/.config
|
cp config/guide.pdf ~/.config
|
||||||
cp config/bookmarks.txt ~/.config
|
cp config/bookmarks.txt ~/.config
|
||||||
|
sudo cp config/ufetch /usr/bin/
|
||||||
cp -r optional/synth-shell ~/.config
|
cp -r optional/synth-shell ~/.config
|
||||||
cp optional/.bashrc ~/
|
cp optional/.bashrc ~/
|
||||||
cp optional/.inputrc ~/
|
cp optional/.inputrc ~/
|
||||||
|
|
|
||||||
83
config/ufetch
Executable file
83
config/ufetch
Executable file
|
|
@ -0,0 +1,83 @@
|
||||||
|
#!/bin/sh
|
||||||
|
#
|
||||||
|
# ufetch-debian - tiny system info for debian
|
||||||
|
|
||||||
|
## INFO
|
||||||
|
|
||||||
|
# user is already defined
|
||||||
|
host="$(hostname)"
|
||||||
|
os="Debian $(cat /etc/debian_version)"
|
||||||
|
kernel="$(uname -sr)"
|
||||||
|
uptime="$(uptime -p | sed 's/up //')"
|
||||||
|
packages="$(dpkg -l | grep -c ^i)"
|
||||||
|
shell="$(basename "${SHELL}")"
|
||||||
|
|
||||||
|
## UI DETECTION
|
||||||
|
|
||||||
|
parse_rcs() {
|
||||||
|
for f in "${@}"; do
|
||||||
|
wm="$(tail -n 1 "${f}" 2> /dev/null | cut -d ' ' -f 2)"
|
||||||
|
[ -n "${wm}" ] && echo "${wm}" && return
|
||||||
|
done
|
||||||
|
}
|
||||||
|
|
||||||
|
rcwm="$(parse_rcs "${HOME}/.xinitrc" "${HOME}/.xsession")"
|
||||||
|
|
||||||
|
ui='unknown'
|
||||||
|
uitype='UI'
|
||||||
|
if [ -n "${DE}" ]; then
|
||||||
|
ui="${DE}"
|
||||||
|
uitype='DE'
|
||||||
|
elif [ -n "${WM}" ]; then
|
||||||
|
ui="${WM}"
|
||||||
|
uitype='WM'
|
||||||
|
elif [ -n "${XDG_CURRENT_DESKTOP}" ]; then
|
||||||
|
ui="${XDG_CURRENT_DESKTOP}"
|
||||||
|
uitype='DE'
|
||||||
|
elif [ -n "${DESKTOP_SESSION}" ]; then
|
||||||
|
ui="${DESKTOP_SESSION}"
|
||||||
|
uitype='DE'
|
||||||
|
elif [ -n "${rcwm}" ]; then
|
||||||
|
ui="${rcwm}"
|
||||||
|
uitype='WM'
|
||||||
|
elif [ -n "${XDG_SESSION_TYPE}" ]; then
|
||||||
|
ui="${XDG_SESSION_TYPE}"
|
||||||
|
fi
|
||||||
|
|
||||||
|
ui="$(basename "${ui}")"
|
||||||
|
|
||||||
|
## DEFINE COLORS
|
||||||
|
|
||||||
|
# probably don't change these
|
||||||
|
if [ -x "$(command -v tput)" ]; then
|
||||||
|
bold="$(tput bold 2> /dev/null)"
|
||||||
|
black="$(tput setaf 0 2> /dev/null)"
|
||||||
|
red="$(tput setaf 1 2> /dev/null)"
|
||||||
|
green="$(tput setaf 2 2> /dev/null)"
|
||||||
|
yellow="$(tput setaf 3 2> /dev/null)"
|
||||||
|
blue="$(tput setaf 4 2> /dev/null)"
|
||||||
|
magenta="$(tput setaf 5 2> /dev/null)"
|
||||||
|
cyan="$(tput setaf 6 2> /dev/null)"
|
||||||
|
white="$(tput setaf 7 2> /dev/null)"
|
||||||
|
reset="$(tput sgr0 2> /dev/null)"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# you can change these
|
||||||
|
lc="${reset}${bold}${red}" # labels
|
||||||
|
nc="${reset}${bold}${red}" # user and hostname
|
||||||
|
ic="${reset}" # info
|
||||||
|
c0="${reset}${red}" # first color
|
||||||
|
|
||||||
|
## OUTPUT
|
||||||
|
|
||||||
|
cat <<EOF
|
||||||
|
|
||||||
|
${c0} ,---._ ${nc}${USER}${ic}@${nc}${host}${reset}
|
||||||
|
${c0} /\` __ \\ ${lc}OS: ${ic}${os}${reset}
|
||||||
|
${c0} | / | ${lc}KERNEL: ${ic}${kernel}${reset}
|
||||||
|
${c0} | ${c1}\`.__.\` ${lc}UPTIME: ${ic}${uptime}${reset}
|
||||||
|
${c0} \ ${lc}PACKAGES: ${ic}${packages}${reset}
|
||||||
|
${c0} \`-,_ ${lc}SHELL: ${ic}${shell}${reset}
|
||||||
|
${c0} ${lc}${uitype}: ${ic}${ui}${reset}
|
||||||
|
|
||||||
|
EOF
|
||||||
|
|
@ -112,7 +112,7 @@ if ! shopt -oq posix; then
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
alias al='vim ~/.bashrc'
|
alias al='nvim ~/.bashrc'
|
||||||
alias alu='source ~/.bashrc'
|
alias alu='source ~/.bashrc'
|
||||||
alias ss='sudo shutdown now'
|
alias ss='sudo shutdown now'
|
||||||
alias rb='sudo reboot'
|
alias rb='sudo reboot'
|
||||||
|
|
@ -138,7 +138,8 @@ alias sts='git status'
|
||||||
alias add='git add .'
|
alias add='git add .'
|
||||||
alias cmt='git commit -m'
|
alias cmt='git commit -m'
|
||||||
alias push='git push'
|
alias push='git push'
|
||||||
neofetch
|
ufetch
|
||||||
|
#neofetch
|
||||||
##-----------------------------------------------------
|
##-----------------------------------------------------
|
||||||
## synth-shell-prompt.sh
|
## synth-shell-prompt.sh
|
||||||
if [ -f ~/.config/synth-shell/synth-shell-prompt.sh ] && [ -n "$( echo $- | grep i )" ]; then
|
if [ -f ~/.config/synth-shell/synth-shell-prompt.sh ] && [ -n "$( echo $- | grep i )" ]; then
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue