| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Personal dotfiles (wayland configuration) + some useful scripts and tools for everyday use
The repo contains a bunch of scripts and utilities for day to day use, it's almost as a fully desktop environment (at least for my use case 😅), some of the features are
In order to install the repository clone the repository and run the make target, it's recommended to clone it under the home user directory ($HOME)
make installThe target will link the repository content (e.g. bash scripts, systemd units,dotfiles and general content) using stow following this file structure
flowchart LR
A[etc] --> E[~/.config]
B[bin] --> F[~/.local/bin]
C[lib] --> G[~/.local/lib]
D[systemd] --> H[~/.config/systemd/user]
I[firefox] --> J[~/.mozilla/firefox]
The target will also add to the ~/.bashrc an include line to enable common aliases for the scripts inside the repository
To make the userChrome.css file valid the option toolkit.legacyUserProfileCustomizations.stylesheets must be enabled in the about:config firefox panel
The install target runs also other system wide configurations (sudo is required) such as:
The install target installs greetd as a login daemon and hyprland and sway as window managers, configuration is done for both the environments (hyprland is more updated since is my default one), to set one of them as default program after login edit /etc/greetd/config.toml following the file here
[!ALERT] The paths in this page are all links generated at the installation phase using stow, refer to the installation phase for the general structure
Configuration is done trough 2 main files:
All scripts and lib files sources the settings.sh file that sources the sample one
flowchart LR
A[some_script.sh]
B[setting.sh]
subgraph repo
C[setting.sh.sample]
end
A -- source --> B -- source --> C
In order to edit the configuration file copy the interested variable from the settings.sh.sample file inside the settings.sh file following the comments guidelines inside the sample file, for example to change the subsonic api endpoint add this to settings.sh:
SUBSONIC_API_ENDPOINT="your-endpoint"| Back | FazBrowse Home | New Git URL |