this is my personal config in debian 12.
requirements:
git
, gnu-stow
.
first install gnu-stow, on debian based distro:
sudo apt install stow
git clone https://github.com/fauzymadani/dotfiles.git
cd dotfiles
stow i3 #example
Warning
Critical content demanding immediate user attention due to potential risks.
the nvchad config in this repository is deprecated and no longer updated, see here instead.
special for this configuration, i'm not creating symlink with stow. i'm too lazy for moving my config for stow
. so when you're facing an error when trying to use this configuration with stow, it means you have to move the configuration files yourself.
mv ~/dotfiles/nvim-nvchad/* ~/.config/nvim/
Important
if you struggled for finding app class for exclude in picom.conf for example, try:
xprop | grep WM_CLASS
#and then select the app
example output:
[ fauzy@debian ]: ~ $ xprop | grep WM_CLASS
WM_CLASS(STRING) = "Navigator", "firefox-esr"
and then put the WM_CLASS
in the picom.conf for example:
opacity-rule = [
"90:class_g = 'Google-chrome'",
"90:class_g = 'firefox-esr'",
"90:class_g = 'Navigator'"
];