1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- ##############
- ##Background##
- ##############
- #Install feh, then give only once:
- feh --bg-scale /usr/share/wallpapers/ColdRipple/contents/images/1920x1080.jpg
- #If it does not work, change the wallpaper path. It could have been removed in a later version of qubes.
- #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.
- #If you lost the i3 config file add this line to make it remember the background:
- exec ~/.fehbg
- #install dunst, a lightweight notification system.
- #Then you have to give
- 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
- #Too disable xfce-notifyid in order to make dunst work. You also have to restart your pc for this change to take effect.
- #In this folder you will also find the dunstrc configuration file you need.
- ###############
- ##Screensaver##
- ###############
- #script: i3-lock
- #Just give 'i3-lock' on a terminal and the screensaver will start.
- #Invoke the script with xautolock in the i3 config file.
- ########################
- ##Screen Toggle Script##
- ########################
- #script: i3-xrandr-toggle
- #And add this to the i3 config file
- bindsym $mod+F8 exec i3-xrandr-toggle
- ####################################
- ##Log in/out/reboot/.. environment##
- ####################################
- #script: i3-exit
- #And add this to the i3 config file
- set $mode_system System (l) lock, (e) logout, (s) suspend, (h) hibernate, (r) reboot, (Shift+s) shutdown
- mode "$mode_system" {
- bindsym l exec --no-startup-id i3-exit lock, mode "default"
- bindsym e exec --no-startup-id i3-exit logout, mode "default"
- bindsym s exec --no-startup-id i3-exit suspend, mode "default"
- bindsym h exec --no-startup-id i3-exit hibernate, mode "default"
- bindsym r exec --no-startup-id i3-exit reboot, mode "default"
- bindsym Shift+s exec --no-startup-id i3-exit shutdown, mode "default"
- # back to normal: Enter or Escape
- bindsym Return mode "default"
- bindsym Escape mode "default"
- }
- bindcode 135 mode "$mode_system"
- ################
- ##Environments##
- ################
|