Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ctrleffive/linux-configurations
Linux Configurations
https://github.com/ctrleffive/linux-configurations
configuration-files dotfiles linux
Last synced: 2 months ago
JSON representation
Linux Configurations
- Host: GitHub
- URL: https://github.com/ctrleffive/linux-configurations
- Owner: ctrleffive
- Created: 2020-11-18T07:26:41.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2021-12-31T14:18:34.000Z (about 3 years ago)
- Last Synced: 2024-08-03T22:18:30.875Z (6 months ago)
- Topics: configuration-files, dotfiles, linux
- Language: CSS
- Homepage:
- Size: 106 KB
- Stars: 4
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- jimsghstars - ctrleffive/linux-configurations - Linux Configurations (CSS)
README
# 🐧 Linux Configurations
## 💾 Backup Configurations
- Make the `backup.sh` file executable with `chmod +x ./backup.sh` first.
- Backup configurations by executing `backup.sh` file.
- Files & folders that needs to be backed up should be mentioned inside `backup.conf` file.
- Once backup is complete, commit the changes.
- If you want to restore the backup, instead of just copy paste everything back, run the backup script. After that you can use file diff to compare the changes and pick manually.## 💫 Install Packages
- Make the `install.sh` file executable with `chmod +x ./install.sh` first.
- Bulk install packages by executing `install.sh` file.
- Packages needs to be installed should be listed inside `install_third_party.conf` & `install_trusted.conf` files.
- Services needs to be enabled should be listed inside `services.conf` file.
- Its better to restart the PC after script finished running.
- 3rd party packages are installed through `pikaur` AUR helper.## ⚡️ Notes
- Install **VMWare Player** from here: https://wiki.archlinux.org/title/VMware#Installation
- After installing `wine`
- Create a link in home directory to `/run/media/chandu/Storage/Softwares/Wine` directory.
- Enable `multilib` in `/etc/pacman.conf` file.
- Use below code to create direct shortcut for joining Zoom calls:
```ini
[Desktop Entry]
Comment=Zoom video conference
Exec=xdg-open "zoommtg://zoom.us/join?action=join&confno=XXXXXXXXXXXXXXXX&pwd=XXXXXXXXXXXXXXXX"
Icon=Zoom
MimeType=application/x-zoom;
Name=Join Meeting
StartupNotify=true
StartupWMClass=zoom
Type=Application
X-KDE-Protocols=zoommtg;zoomus;tel;callto;zoomphonecall;
```