├── .gitignore ├── .xinitrc ├── README.md ├── config_i3menu ├── config_work_laptop ├── conky ├── JSON.lua ├── brightnesslevel.sh ├── conky-i3bar ├── conky.conf ├── conky.lua ├── convert.lua ├── info.py ├── volumelevel.py ├── volumelevel.sh └── weather.sh ├── i3blocks.conf ├── i3exit └── i3status.conf /.gitignore: -------------------------------------------------------------------------------- 1 | config 2 | -------------------------------------------------------------------------------- /.xinitrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomos/i3wm-config/HEAD/.xinitrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomos/i3wm-config/HEAD/README.md -------------------------------------------------------------------------------- /config_i3menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomos/i3wm-config/HEAD/config_i3menu -------------------------------------------------------------------------------- /config_work_laptop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomos/i3wm-config/HEAD/config_work_laptop -------------------------------------------------------------------------------- /conky/JSON.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomos/i3wm-config/HEAD/conky/JSON.lua -------------------------------------------------------------------------------- /conky/brightnesslevel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomos/i3wm-config/HEAD/conky/brightnesslevel.sh -------------------------------------------------------------------------------- /conky/conky-i3bar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomos/i3wm-config/HEAD/conky/conky-i3bar -------------------------------------------------------------------------------- /conky/conky.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomos/i3wm-config/HEAD/conky/conky.conf -------------------------------------------------------------------------------- /conky/conky.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomos/i3wm-config/HEAD/conky/conky.lua -------------------------------------------------------------------------------- /conky/convert.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomos/i3wm-config/HEAD/conky/convert.lua -------------------------------------------------------------------------------- /conky/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomos/i3wm-config/HEAD/conky/info.py -------------------------------------------------------------------------------- /conky/volumelevel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomos/i3wm-config/HEAD/conky/volumelevel.py -------------------------------------------------------------------------------- /conky/volumelevel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomos/i3wm-config/HEAD/conky/volumelevel.sh -------------------------------------------------------------------------------- /conky/weather.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomos/i3wm-config/HEAD/conky/weather.sh -------------------------------------------------------------------------------- /i3blocks.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomos/i3wm-config/HEAD/i3blocks.conf -------------------------------------------------------------------------------- /i3exit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomos/i3wm-config/HEAD/i3exit -------------------------------------------------------------------------------- /i3status.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomos/i3wm-config/HEAD/i3status.conf --------------------------------------------------------------------------------