Skip to content

ebelin/dotfiles

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Setting up new machine

KDE

  1. System Settings, Fonts
    • General: Bitstream Vera Sans, 11
    • Fixed width: Noto Sans Mono, 11
    • Small: Bitstream Vera Sans, 9
    • Toolbar: Bitstream Vera Sans, 10
    • Menu: Droid Sans, 11
    • Window Title: Droid Sans, bold, 11

Bash

sudo dnf install tlp
sudo systemctl enable tlp.service 
sudo systemctl start tlp.service 
sudo systemctl status tlp.service 

ZSH

sudo dnf install zsh
sudo dnf install util-linux
sudo dnf install git
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
chsh -s $(which zsh)

Fonts and Theme

sudo dnf install powerline powerline-fonts
ls /usr/share/powerline/zsh/powerline.zsh
echo $SHELL
echo $ZSH_CUSTOM
git clone https://github.com/romkatv/powerlevel10k.git $ZSH_CUSTOM/themes/powerlevel10k
mkdir -p ~/.local
cd ~/.local
git clone --filter=blob:none https://github.com/ryanoasis/nerd-fonts
cd nerd-fonts
./install.sh
ls ../share/fonts/NerdFonts
reboot

ZSH Theme

omz theme list
omz theme set powerlevel10k/powerlevel10k
vim ~/.zshrc
p10k configure

ZSH Plugins

sudo dnf install fzf
omz update
omz plugin list
omz plugin info fzf
omz plugin load fzf
omz plugin enable fzf
omz plugin disable fzf
git clone https://github.com/zsh-users/zsh-autosuggestions.git $ZSH_CUSTOM/plugins/zsh-autosuggestions
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git $ZSH_CUSTOM/plugins/zsh-syntax-highlighting
git clone --depth 1 -- https://github.com/marlonrichert/zsh-autocomplete.git $ZSH_CUSTOM/plugins/zsh-autocomplete
omz plugin enable zsh-autosuggestions
omz plugin enable zsh-syntax-highlighting
omz plugin enable zsh-autocomplete

Google Chrome

sudo dnf install fedora-workstation-repositories
sudo dnf config-manager --set-enabled google-chrome
sudo dnf install google-chrome-stable
reboot

Make fonts crispy

  1. chrome://flags
    • #ozone-platform-hint -> Auto
  2. chrome://settings
    • Font size: Large (20)
    • Standard: Droid Sans
    • Serif: Bitstream Vera Serif
    • Sans-serif: Droid Sans
    • Fixed-width: SejaVu Sans Mono

Git, GitHub, and dot-files

sudo dnf install gh
mkdir Projects
cd Projects
gh auth login
gh repo clone ebelin/dotfiles
cd dotfiles

BIOS Reset

$ sudo efibootmgr

# lsblk -f | grep efi
> ├─nvme0n1p1 vfat FAT32 146D-A824 973.1M 5% /boot/efi

# ls /boot/efi/EFI/fedora/ | grep -E -e 'grub.*efi'  
shimx64.efi
grubx64.efi

$ sudo efibootmgr --create --disk /dev/nvme0n1 --part 1 --label Fedora --loader \\EFI\\fedora\\shimx64.efi

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published