SkillAgentSearch skills...

Dotfiles

dotfiles of my daily used enviroment

Install / Use

/learn @simonvic/Dotfiles

README

<p align="center"> <img width="200px" src="https://i.imgur.com/TU66AEL.png"> </p>

<p align="center"> <img src="https://img.shields.io/badge/version-v4.0.0-F0544C?style=for-the-badge"> <img src="https://img.shields.io/github/v/tag/simonvic/dotfiles?color=F0544C&label=latest%20stable%20release&style=for-the-badge"> <br> <br> <img src="https://img.shields.io/github/last-commit/simonvic/dotfiles/dev?color=F0544C&logoColor=F0544C&style=flat-square"> <img src="https://img.shields.io/github/commits-since/simonvic/dotfiles/latest/dev?color=F0544C&logoColor=F0544C&style=flat-square"> <br> <img src="https://img.shields.io/github/repo-size/simonvic/dotfiles?color=F0544C&logoColor=F0544C&style=flat-square"> <img src="https://img.shields.io/github/license/simonvic/dotfiles?color=F0544C&style=flat-square"> <br> <img src="https://img.shields.io/github/watchers/simonvic/dotfiles?color=F0544C&style=flat-square"> <img src="https://img.shields.io/github/forks/simonvic/dotfiles?color=F0544C&style=flat-square"> </p>

Getting started

This is my personal setup that I use to quickly bootstrap my machines with a single git clone.

It targets Linux systems, but can also be used on WSLs, systems with just TTY, and Android (via Termux).

In .config there are the configuration files for: shell prompt, terminal, windows manager, status bars, lockscreen, notification daemon, application launchers, fonts, general theming and more.

In .local/bin there are a bunch of bash scripts which wrap the many utilities used and aims to improve interoperability between them, while providing some QoL features on top.

In .config/nvim there is my heavily customized neovim setup, with custom colorscheme, custom keybindings and other customizations.

X11 to Wayland

Since the 4.0 release, I target Wayland based systems; although the scripts should be compatible with both X11 and Wayland, X11 side of the dotfiles should be considered unmaintained, and Wayland should be preferred

Here is a list of the Wayland packages that replaced their X11 counterpart:

| Utility | X11 | Wayland | | ----------------- | -------------------------- | -------------------------------- | | Status bar | polybar | waybar | | Window manager | i3wm | swayvm (swayfx fork) | | Window compositor | picom | included in swayfx | | Lockscreen | i3lock (i3lock-color fork) | swaylock (swaylock-effects fork) | | Night mode | redshift | gammastep | | Screenshots | scrot | grim + slurp |

<br>

Quickstart

[!WARNING] Before proceeding to installation make sure to backup your system

  1. Install the required packages

  2. Clone the dotfiles

    git clone --bare https://github.com/simonvic/dotfiles.git ${XDG_DATA_HOME:-$HOME/.local/share}/.dotfiles
    
  3. Checkout the content

    git --git-dir=${XDG_DATA_HOME:-$HOME/.local/share}/.dotfiles/ --work-tree=$HOME checkout
    
  4. Hide the untracked files

    git --git-dir=${XDG_DATA_HOME:-$HOME/.local/share}/.dotfiles/ --work-tree=$HOME config --local status.showUntrackedFiles no
    
  5. Add .local/bin to the PATH enviroment variable

    echo '
    if [[ $UID -ge 1000 && -d $HOME/.local/bin && -z $(echo $PATH | grep -o $HOME/.local/bin) ]]; then
    	export PATH="${PATH}:$HOME/.local/bin"
    fi' >> /etc/profile
    
  6. Make the scripts executable (chmod +x <script>)

  7. Relog or reboot your system to make sure the changes have taken effect

[!TIP] Visit the installation guide for a more in-depth guide.

<br>

Showcase

[!NOTE] The previews may not be up to date with the latest changes

<h2 align="center">Lockscreen</h2> <img src="https://i.imgur.com/1xyHtuH.gif" width="100%"> <details> <summary>Other themes preview</summary> <img src="https://imgur.com/AD6SStG.gif" width="50%"> <img src="https://imgur.com/t9re5NI.gif" width="50%"> </details> <br> <h2 align="center">Application launcher, window switcher and calculator (Rofi)</h2> <img src="https://imgur.com/iU7AKT8.gif" width="100%">

Rofi themes have been made to be easily configurable and customized. The configuration files and themes are structured like this:

|_ config            (defines rofi behaviour, components and default base UI layout/structure)
|_ Theme             (defines UI layout and structure)
    |_ Style         (defines UI components color and text font)
        |_ Fonts     (defines a set of fonts)
        |_ Palette   (defines a color palette)

A Theme (e.g. fullscreen.rasi, reverse.rasi, window_reverse.rasi etc) only takes care of how the UI components are structured and arranged. It imports a Style.

A Style defines text fonts, imported from a Fonts, and the colors of the components, imported from a Palette

<br> <h2 align="center">Status bars</h2>

sPolybarctl will manage your status bars. It can launch, show, hide or toggle them.

$ sPolybarctl show myFirstBar    # make visible "myFirstBar"
$ sPolybarctl toggle mySecondBar # toggle visibility state for "mySecondBar"
$ sPolybarctl hide               # hide all bars
<img src="https://imgur.com/rNcoOSk.gif" width="100%"> <br> <h2 align="center">TODO manager,Notifications and more (Dunst) </h2> <h3 align="center">Music control (sPlayerctl) + custom Spotify notification</h3>

sPlayerctl helps you in controlling your media players

<img src="https://imgur.com/kFvlW6i.gif" width="100%">

A great QoL feature is the quick selection of the player you wish to control (via CLI or via media keys)

$ sPlayerctl select-player set spotify

...or even better prompt the selection with a UI via Dunst and Rofi

<img src="https://imgur.com/7aRCUr3.gif" width="100%"> <h3 align="center">App notifications</h3> <img src="https://imgur.com/nVk0GU6.gif" width="100%"> <br> <h3 align="center">WiFi</h3>

With sWifi you can quickly scan for WiFi signals, filter and connect to them with few keystrokes.

<img src="https://imgur.com/2vIHj1B.gif"> <br> <h3 align="center">sScreenshot</h3>

sScreenshot allows you to take area or full screenshot, copy it to clipboard and paste it anywhere.

<img src="https://imgur.com/ZfSI0Ea.gif"> <br> <h3 align="center"> Speaker and microphone control</h3>

Nothing special here. sVolumectl and sMicrophonectl allows you to change the volume of the speakers and microphone while showing a dunst notification with a personalizable bar

<img src="https://imgur.com/Zz33t6s.gif" width="100%"> <br> <h3 align="center">Brightness and Redshift control</h3>

sBrightnessctl will adjust the brightness and manage the "night mode" (blue shift) temperature.

<img src="https://imgur.com/vTUWWlH.gif" width="100%"> <br> <h3 align="center">ToDo popup with context action</h3>

sTodo is a minimal TODO manager, which can also show a popup via the notification daemon

<p align="center"> <img src="https://imgur.com/8OWFgx8.gif" width="50%"> <img src="https://imgur.com/aYN9Ees.gif" width="100%"> </p> <br>

Contact me

<p align="center"> <a style="margin: 0 10px" href = "mailto: simonvic.dev@gmail.com"> <img src="https://img.shields.io/badge/Email-simonvic.dev%40gmail.com-F0544C?style=social&logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAOEAAADhCAMAAAAJbSJIAAAAh1BMVEX///8zMzMsLCxsbGwwMDAVFRUmJiYbGxsWFhYtLS0oKCj4+PgREREjIyMgICAZGRnp6ena2to4ODjj4+Py8vKzs7OZmZnMzMygoKB3d3fIyMiDg4NTU1NoaGheXl7S0tJJSUmvr6+GhoY+Pj5VVVWRkZFzc3NLS0u/v7+ioqIAAAB9fX2xsbHNtidiAAAIyUlEQVR4nO2d6XbaShCER7JYxGpssBMveMFOHOz3f75AwAZJVbMbSTn9/ck5N3CjAqlrqmdBKUEQBEEQBEEQBEEQBEEQBEEQBEEQBEEQBEEQhP+V17P/gec3rnA26aatZ/oy1HyJ50matJzeT/19Orzr1n2JYXRejc/i/aTuiwxh9GQUqNR7r+7L9Cbr3FgIVOqqU/eVepIPZlYClfoY1X2tXqQX55YClbqZZnVfrjtd4hLnv9B/nY3zui/Ylck9ErIRvVgvofBVy4xx+gxldK/VbTq4Q9/u8HFQ90W7MPoBb8XB+FXdZZthDHxCW2SM2RQORW9GWbZUq4RW2dYYY9Z/QNf/tLWEldq9ZASd8qodrpEml+jqX3e2rvav6i/Qiz7a4P2Dxzm69p/7O/BTYTK6gndy841xDL1ALcf7v/9SmPRu0Qtng4YbIw5L84MTHBQmkzP02vOLRhvjCIaly+xw0UcKky42xt8NNkYclh56R8/WscIkXcFntrHGmHWgDb51jotHQWGSd9tkjORqfxQ9rqgwyXrQOxtpjCQsPZe+jpLCjfe3xRhx1VBn5UeqrHDz8P5Bb7zpN8wYceUHjbSqwqQPc8is2yhjnEL3RpkPKEwmMBQ3yhg7OCyh3I4UkoHQ8HdTWqnZCIelHnqSoMJk0GhjzCY8LFXBClkoboQx5gMYllgPlChssDEawlIFppA1BsitcDpMYakCVZgkaziqrTkxkrC04ulAozDpw2RSqzHiS7rUzQnqFCa9d/T/q9EYLcJSBa3ChhljNoX9smJYqqBXmAx+w+FtLcaYj23CUgWDQhZRbk9vjCwsTQ3vMylkn9zJjbGL76ZKWKpgVMjmVRenTYzWYamCWeGmgsFQfNLESMKSTVW3UUi6xbP0ZMZIwpKVM1spJN3iU80xks6K5ejKTiGbYD3J4pusd43+cdsRsqVC675PfPIMzyz1Ld9vq5B1i29NdhQKCeM0LFWwVsimUU1DikCcw1IFe4VJNoHPw+I7JfZgU2zussbAQeEmMcJQfK0d2geBl+FdOs34OSkM8iUPSFiaOH2ibgpJt/h7jJH0Ud5GbreMo0LSLf4OY8wnuLK5joddFSZjvHosujH6hqUKzgpZNy9yYvQOSxXcFSZpjjuyMV0j4ijRQyHrqkdMjGSk79UC81HI5s9vHKschaQ1vxWhXgrZNOpllMRotf7AHk+FpDUbo5UaGJYq+Cok7fVwY8xxHXv1rmPeCtmoP7CVGhyWKvgrpMYYkhjHL/BjcwhLFQIUsmlU53HVAeMyPA9CFLJQvPB1DRKWsqDyFaSQrS32TIwdHJYC+7JhCtlV+ZgzWWDxFtp4DlVIxh/uidFuGZ4HwQrJGNJ1jpFULfewVCFcIckBbkGHtGNjzFNGUMguzyExfmdLPYbCTR6H3m/9DAXMLJmJojDJU2yMdnGgA4vVQ6RdAnEUJn3YoLKaHiIzS+o5Us8gjkJsGcomMZJOuoq2/CqGQvYtbDEZI1mGt7sDovQMIijMx7Bts2f4oiuIJCz

Related Skills

View on GitHub
GitHub Stars81
CategoryDevelopment
Updated9d ago
Forks5

Languages

Lua

Security Score

100/100

Audited on Mar 27, 2026

No findings