webdev-ashishk / Linux-Config

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Installing Extension Manager

sudo apt install gnome-shell-extension-manager

all installed extensions

installed-extensions

image


Installing Tweaks to Modifing you theme

sudo apt install gnome-tweaks

Theme Customization in Ubuntu

https://github.com/vinceliuice/Mojave-gtk-theme
https://github.com/vinceliuice/Mojave-gtk-theme
  1. git clone
  2. cd
  3. ./install.sh

theme2


Cursor Customization

https://www.gnome-look.org/p/1197198
  1. Goto Home open .icons file || if not present then create
  2. Paste entire file like below icon

How to make fish as default shell

 chsh -s /usr/bin/fish

zoxide replace cd

configure Zoxide

  1. cd ~/.config/fish
  2. code . config.fish
  3. zoxide init fish | source Screenshot from 2023-07-01 14-24-19

Kitty config file

map ctrl+c copy_to_clipboard
map ctrl+v paste_from_clipboard 
font_size 24.0
map ctrl+minus change_font_size all -2.0

How to install tar.gz file's on linux


sudo apt-get install alien  
cd Downloads
sudo alien -d "filename.tar.gz"

Delete file's on linux

rm <fileName>
  • if Not deleted
rm -i <fileName>

How to File explorer is Not responding

killall nautilus
kill <process-id>

installing FzF (search become very fast)

Installation Guide of tar.gz file on Ubuntu

1. tar -xzvf your_file.tar.gz
2. cd extracted_directory
3. Check for installation instructions: Look for a README or INSTALL file within the extracted directory. It may contain   specific instructions on how to proceed with the installation. Read and follow those instructions if available.

4. Configure and compile (if needed): In some cases, you may need to configure and compile the source code. This step typically involves running the following commands in the extracted directory:
./configure
make
Again, refer to any provided documentation for specific instructions.
5. Install the software: Once the configuration and compilation steps (if applicable) are completed, use the following command to install the software:

bash
Copy code
sudo make install
You may be prompted to enter your password. Provide the necessary permissions for the installation to proceed.

6.Verify the installation: After the installation process completes, you can verify if the software was installed successfully. Try running the software or use any provided verification steps mentioned in the documentation.

It's important to note that the specific installation process may vary depending on the software package. Always refer to any provided documentation or installation instructions accompanying the .tar.gz file for the most accurate and specific instructions.

How we can Make shorter code

  1. Goto bashrc file
code ~/.bashrc
  • alias code='flatpak run com.visualstudio.code'
  • alias codei="code-insider"
  • alias dev="npm run dev"
  • alias c="clear"
  1. Goto fish configure file code ~/.config/fish/config.fish
  • alias dev="npm run dev"

  • alias c="clear"

  • Define the "ci" function function codei code-insiders $argv end

KeyBinding and Shortcut

close tab - > ctrl+x

keybinding ,fileManager

About