/etc/default/grub - add this line at the end GRUB_THEME=/boot/grub/themes/Telsa/theme.txt sudo update-grub - then done reboot. and u r good to go. How to fix the resolution problem type c vbeinfo or videoinfo in the second or third line u will find the resolution then reboot open /etc/default//grub/ and uncooment the below line then update the resolution #GRUB_GFXMODE=640x480 /boot/grub/themes/ /boot/grub/ - background image.png
1. Edit your shell configuration file : nano ~/.bashrc # or nano ~/.zshrc 2. Add the functions : Append the following lines to your configuration file. These functions will wrap the commands and pipe their output through lolcat : function lolcat_wrapper() { command "$@" | lolcat } alias ls='lolcat_wrapper ls' alias cat='lolcat_wrapper cat' alias echo='lolcat_wrapper echo' alias grep='lolcat_wrapper grep' alias tail='lolcat_wrapper tail' alias head='lolcat_wrapper head' alias dmesg='lolcat_wrapper dmesg' alias df='lolcat_wrapper df' alias du='lolcat_wrapper du' alias free='lolcat_wrapper free' alias ps='lolcat_wrapper ps' alias top='lolcat_wrapper top' alias htop='lolcat_wrapper htop' alias ifconfig='lolcat_wrapper ifconfig' alias ip='lolcat_wrapper ip' alias ping='lolcat_wrapper ping' alias traceroute='lolcat_wrapper traceroute' alias ...
Comments
Post a Comment