README 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. ##############
  2. ##Background##
  3. ##############
  4. #Install feh, then give only once:
  5. feh --bg-scale /usr/share/wallpapers/ColdRipple/contents/images/1920x1080.jpg
  6. #If it does not work, change the wallpaper path. It could have been removed in a later version of qubes.
  7. #Use this command with a different path to change background. Once you give it the i3 config file will allow you to remember the configuration at every login.
  8. #If you lost the i3 config file add this line to make it remember the background:
  9. exec ~/.fehbg
  10. #install dunst, a lightweight notification system.
  11. #Then you have to give
  12. sudo mv /usr/share/dbus-1/services/org.xfce.xfce4-notifyd.Notifications.service /usr/share/dbus-1/services/org.xfce.xfce4-notifyd.Notifications.service.disabled
  13. #Too disable xfce-notifyid in order to make dunst work. You also have to restart your pc for this change to take effect.
  14. #In this folder you will also find the dunstrc configuration file you need.
  15. ###############
  16. ##Screensaver##
  17. ###############
  18. #script: i3-lock
  19. #Just give 'i3-lock' on a terminal and the screensaver will start.
  20. #Invoke the script with xautolock in the i3 config file.
  21. ########################
  22. ##Screen Toggle Script##
  23. ########################
  24. #script: i3-xrandr-toggle
  25. #And add this to the i3 config file
  26. bindsym $mod+F8 exec i3-xrandr-toggle
  27. ####################################
  28. ##Log in/out/reboot/.. environment##
  29. ####################################
  30. #script: i3-exit
  31. #And add this to the i3 config file
  32. set $mode_system System (l) lock, (e) logout, (s) suspend, (h) hibernate, (r) reboot, (Shift+s) shutdown
  33. mode "$mode_system" {
  34. bindsym l exec --no-startup-id i3-exit lock, mode "default"
  35. bindsym e exec --no-startup-id i3-exit logout, mode "default"
  36. bindsym s exec --no-startup-id i3-exit suspend, mode "default"
  37. bindsym h exec --no-startup-id i3-exit hibernate, mode "default"
  38. bindsym r exec --no-startup-id i3-exit reboot, mode "default"
  39. bindsym Shift+s exec --no-startup-id i3-exit shutdown, mode "default"
  40. # back to normal: Enter or Escape
  41. bindsym Return mode "default"
  42. bindsym Escape mode "default"
  43. }
  44. bindcode 135 mode "$mode_system"
  45. ################
  46. ##Environments##
  47. ################