{"id":21065496,"url":"https://github.com/raulsanchezzt/auto-bspwm","last_synced_at":"2025-05-16T02:33:23.711Z","repository":{"id":44990053,"uuid":"453659314","full_name":"RaulSanchezzt/auto-bspwm","owner":"RaulSanchezzt","description":"Automated script to install bspwm in Linux","archived":false,"fork":false,"pushed_at":"2023-02-06T07:55:04.000Z","size":39499,"stargazers_count":18,"open_issues_count":1,"forks_count":1,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-04-03T19:12:22.217Z","etag":null,"topics":["bspwm","debian","kali-linux","kali-scripts","kitty","linux","neovim","nvim","parrot","picom","polybar","polybar-themes","powerlevel10k","rofi","shell-script","sxhkd","vim"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/RaulSanchezzt.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-01-30T11:19:18.000Z","updated_at":"2024-12-08T22:31:18.000Z","dependencies_parsed_at":"2023-02-09T20:46:02.270Z","dependency_job_id":null,"html_url":"https://github.com/RaulSanchezzt/auto-bspwm","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RaulSanchezzt%2Fauto-bspwm","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RaulSanchezzt%2Fauto-bspwm/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RaulSanchezzt%2Fauto-bspwm/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RaulSanchezzt%2Fauto-bspwm/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/RaulSanchezzt","download_url":"https://codeload.github.com/RaulSanchezzt/auto-bspwm/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254456356,"owners_count":22074155,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bspwm","debian","kali-linux","kali-scripts","kitty","linux","neovim","nvim","parrot","picom","polybar","polybar-themes","powerlevel10k","rofi","shell-script","sxhkd","vim"],"created_at":"2024-11-19T17:55:21.760Z","updated_at":"2025-05-16T02:33:23.152Z","avatar_url":"https://github.com/RaulSanchezzt.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# auto-bspwm\n\u003e This is a bash script that install all the  you need to use in a Linux Distro with a tiling window manager like [bspwm](https://github.com/baskerville/bspwm).\n\n## Installation\n1. Make sure to disable sleep because the script can take a while to finish.\n\n![disable sleep](assets/power-manager.png)\n\n2. Clone this repository and change the directory.\n\n```bash\n# Using HTTP\n$ git clone https://github.com/RaulSanchezzt/auto-bspwm.git \u0026\u0026 cd /auto-bspwm\n\n# Using SSH\n$ git clone git@github.com:RaulSanchezzt/auto-bspwm.git \u0026\u0026 cd /auto-bspwm\n```\n\n3. Give the current user execute permissions\n\n```bash\nchmod +x setup.sh\n```\n\n4. Run the script\n\n```bash\n./setup.sh\n```\n\n5. Make sure you have your `dotfiles` configured. In this case, I will download my personal  [dotfiles](https://github.com/RaulSanchezzt/dotfiles).\n\n```bash\ngit clone https://github.com/RaulSanchezzt/dotfiles.git ~/dotfiles \u0026\u0026 cd ~/dotfiles \n```\n\n6. Create the necessary symbolic links\n\n```bash\n./link.sh\n```\n\n8. Reboot the machine\n\n```bash\nsudo reboot now\n```\n\n9. Once you have rebooted the machine, select `bspwm` as the window manager and then login.\n\n![login](assets/login.png)\n\n10. This will be the final result. Start a new terminal using `Super + Intro`\n\n![final result](assets/result.png)\n\n## How to update Nvim v0.61 to Nvim v0.7.0 in Linux\n\n\u003e Once you have installed Linux, you may have installed `Nvim` v0.61 by default. If you would like to use a custom configuration like [NvChad](https://github.com/NvChad/NvChad) you will have to update `Nvim` this way.\n\n1. Check if your version is under v0.7.0\n```bash\nnvim --version\nNVIM v0.6.1\nBuild type: Release\nLuaJIT 2.1.0-beta3\nCompiled by team+vim@tracker.debian.org\n\nFeatures: +acl +iconv +tui\nSee \":help feature-compile\"\n\n     system \"vimrc\" file: \"$VIM/sysinit.vim\"\n            fall-back for $VIM: \"/usr/share/nvim\"\n\nRun :checkhealth for more info\n```\n\n2. Download the latest version from the official source\n\n```bash\nwget https://github.com/neovim/neovim/releases/download/v0.7.2/nvim-linux64.deb\n```\n\n3. Make sure you have the system updated\n\n```bash\nsudo apt update \u0026\u0026 sudo apt upgrade\n```\n\n4. Delete `nvim.desktop` of your PC\n\n```bash\nsudo rm /usr/share/applications/nvim.desktop\n```\n\n5. Remove `neovim` and It's componentes of your computer\n\n```bash\nsudo apt remove neovim neovim-runtime\n```\n\n```bash\nsudo apt autoremove\n```\n\n6. Then, install the new version of `nvim`\n\n```bash\nsudo apt install ./nvim-linux64.deb\n```\n\n7. After having installed the new version, check the version again\n\n```bash\nNVIM v0.7.2\nBuild type: Release\nLuaJIT 2.1.0-beta3\nCompiled by runner@fv-az164-457\n\nFeatures: +acl +iconv +tui\nSee \":help feature-compile\"\n\n   system vimrc file: \"$VIM/sysinit.vim\"\n  fall-back for $VIM: \"/share/nvim\"\n\nRun :checkhealth for more info\n```\n\n8. Finally, create a symbolic link to use `vim` as `nvim`\n\n```bash\nsudo ln -sf /usr/bin/nvim /usr/bin/vim\n```\n\n## References\n\u003e If you want learn more about it, check out this repositories.\n- Other configurations\n    - https://github.com/nozerobit/colorful-kali\n    - https://github.com/yorkox0/autoBspwm\n    - https://github.com/yorkox0/autoAwesome\n    - https://github.com/yorkox0/autoBspwm.sh\n- Tools\n    - https://github.com/baskerville/bspwm\n    - https://github.com/baskerville/sxhkd\n    - https://polybar.github.io/\n    - https://github.com/yshui/picom\n    - https://github.com/davatorium/rofi\n    - https://github.com/kovidgoyal/kitty\n    - https://github.com/neovim/neovim\n    - https://www.nerdfonts.com/\n    - https://github.com/sharkdp/bat\n    - https://github.com/Peltoche/lsd\n    - https://github.com/radareorg/radare2","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fraulsanchezzt%2Fauto-bspwm","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fraulsanchezzt%2Fauto-bspwm","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fraulsanchezzt%2Fauto-bspwm/lists"}