My tiling Qtile, Spectrwm, i3, Dwm & Sway configurations (for Arch/Devuan/Debian)
Go to file
2022-03-26 14:46:33 +01:00
.bash_completion Dotfiles config 2021-11-13 19:24:20 +01:00
.cargo Dotfiles config update (2021-11-16) 2021-11-16 00:01:31 +01:00
.config Dotfiles config update (2022-03-13) 2022-03-13 16:23:10 +01:00
.vim Dotfiles config update (2021-11-20) 2021-11-20 12:18:57 +01:00
.zsh_functions Dotfiles config 2021-11-13 19:24:20 +01:00
examples Dotfiles config update (2022-03-26) 2022-03-26 14:41:16 +01:00
fonts Dotfiles config update (2021-11-20) 2021-11-20 12:18:57 +01:00
scripts Dotfiles config update (2022-03-26) 2022-03-26 14:41:16 +01:00
wallpapers Dotfiles config update (2021-11-23) 2021-11-23 21:36:28 +01:00
.bashrc Dotfiles config update (2022-03-02) 2022-03-02 23:08:13 +01:00
.conkyrc.bck Dotfiles config update (2021-11-23) 2021-11-23 18:51:12 +01:00
.vimrc Dotfiles config update (2021-01-28) 2022-01-28 16:28:37 +01:00
.Xresources Dotfiles config update (2022-03-13) 2022-03-13 23:52:03 +01:00
.zshenv Dotfiles config 2021-11-13 19:24:20 +01:00
.zshrc Dotfiles config update (2022-03-02) 2022-03-02 23:08:13 +01:00
Dependencies.md Dotfiles config update (2021-03-26) 2022-03-26 14:46:33 +01:00
install-config.sh Dotfiles config update (2022-03-26) 2022-03-26 14:41:16 +01:00
README-i3-i3blocks.md Dotfiles config update (2022-03-26) 2022-03-26 14:41:16 +01:00
README-i3-polybar.md Dotfiles config update (2022-03-26) 2022-03-26 14:41:16 +01:00
README-i3.md Dotfiles config update (2022-03-26) 2022-03-26 14:41:16 +01:00
README-spectrwm-polybar.md Dotfiles config update (2022-03-26) 2022-03-26 14:41:16 +01:00
README-sway.md Dotfiles config update (2022-03-26) 2022-03-26 14:41:16 +01:00
README.md Dotfiles config update (2022-03-26) 2022-03-26 14:41:16 +01:00

dotfiles - My tiling spectrwm, i3 & sway configurations (for Arch/Devuan/Debian)

My configurations:

spectrwm

Installation:

  • Install dependencies:

  • Install configuration (dotfiles):

    • Clone repository and copy files to your home:

      $ git clone https://github.com/q3aql/dotfiles
      $ cd dotfiles
      $ chmod +x install-config.sh
      $ ./install-config.sh
      

Configuration:

  • Network Manager (Connman or NetWorkManager):

    • By default is enabled NetWorkManager as network manager:

    • If you prefer Connman, edit the file ~/.config/spectrwm/spectrwm.conf and autostart.sh:

      # Choose between NetworkManager or Connman
      program[connection]   = nm-connection-editor
      #program[connection]   = connman-gtk --no-icon
      bind[connection]      = MOD+c
      
      # Network Tray (Use Win + Shift + t to show it)
      nm-applet &
      #connman-gtk --tray &
      
  • Monitor & resolution:

    • The configuration load my monitor configuration:

    • Use the command xrandr for show your config & edit the file ~/.config/spectrwm/startxrandr.sh:

      xrandr --output DisplayPort-0 --mode 1280x1024 -r 75.02
      xrandr --output DisplayPort-1 --mode 1280x1024 -r 75.02 --rotate left --right-of DisplayPort-0
      
  • Wallpaper:

    • By default, the config load wallpaper on ~/wallpapers/abstract.png:

    • Edit ~/.config/spectrwm/startwallpaper.sh for set your favorite wallpaper:

      sleep 3
      nitrogen --set-scaled ~/wallpapers/abstract.png
      
  • Set Screensaver (Optional):

    • The configuration file set xautolock with 20 minutes as screensaver:

    • You can change the program between xautolock and xscreensaver editing the file ~/.config/spectrwm/startscreensaver.sh:

      # Basic configuration variables
      ScreensaverProgram="xautolock" # Options: xautolock or xscreensaver
      ScreensaverTime="20" # 20 minutes (only for xautolock)
      
  • Compositor (Compton or Picom):

    • By default, the config load Picom compositor.

    • You can change it editing the lines on ~/.config/spectrwm/startcompositor.sh file:

      # Load compton or picom (Compositor)
      sleep 15
      #compton &
      picom &
      

Keys configuration:

My list of extra combinations:

- Super + d = Open Rofi Theme selector
- Super + x = Close Window
- Super + w = Minimize Window
- Super + Shift + w = Maximize/Search Window
- Super + Shift + t = Show/Hide Tray (Run by default on Workspace 7)
- Super + c = Open network configuration
- Super + v = Open volume configuration (Pavucontrol)
- Super + Return = Open terminal (Alacritty)
- Super + n = Open PCManFM
- Super + p = Open Rofi (exec program)
- Super + o = Open Rofi (exec menu program)
- Super + z = Open Wallpaper selector (Nitrogen)
- Super + x = Open LXRandr
- Super + u = Open Xterm
- Super + i = Open LXAppearance
- Super + s = Open Xfce4-Screenshot
- Super + Delete = Poweroff screen
- Super + Shift + Delete = Close session
- Volume-Up = Volume +5
- Volume-Down = Volume -5
- VolumeMute = Mute Volume
- BrightnessUp = Brightness +10
- BrightnessDown = Brightness -10