Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # GENERAL {
- # Mod1 = Alt, Mod4 = Windows
- set $mod Mod1
- set $alt Mod4
- set $term xterm
- set $bw 0
- font pango:monospace 8
- default_orientation auto
- focus_follows_mouse no
- new_window pixel $bw
- # }
- # KEYBINDINGS {
- # Start a terminal
- bindsym $mod+Return exec $term
- # Kill focused container
- bindsym $mod+Shift+q kill
- # Start dmenu
- bindsym $mod+d exec dmenu_run
- # Fullscren focused container
- bindsym $mod+f fullscreen toggle
- # Toggle split
- bindsym $mod+x layout toggle split
- # Change focus
- bindsym $mod+Left focus left
- bindsym $mod+Down focus down
- bindsym $mod+Up focus up
- bindsym $mod+Right focus right
- # Move focused container
- bindsym $mod+Shift+Left move left
- bindsym $mod+Shift+Down move down
- bindsym $mod+Shift+Up move up
- bindsym $mod+Shift+Right move right
- # Reload/Restart/Exit
- bindsym $mod+Shift+c reload
- bindsym $mod+Shift+r restart
- #bindsym $mod+Shift+e exit
- # }
- # USER KEYBINDINGS {
- # Lock screen
- bindsym $alt+l exec "~/bin/scripts/lockScreen.sh"
- # Take screenshot
- bindsym Print exec scrot -e 'mv $f ~/Pictures/screenshots'
- # Raise/Lower/Mute/Unmute volume
- bindsym XF86AudioRaiseVolume exec "amixer -q sset Master 3%+"
- bindsym XF86AudioLowerVolume exec "amixer -q sset Master 3%-"
- bindsym XF86AudioMute exec "amixer -q sset Master toggle"
- # }
- # AUTOSTART {
- # Restore wallpaper
- exec --no-startup-id nitrogen --restore
- # Load .Xresources
- exec --no-startup-id xrdb ~/.Xresources
- # Lock screen
- exec --no-startup-id "~/bin/scripts/boot/lockScreen.sh"
- # Mount FTP
- #exec --no-startup-id curlftpfs user:pass@ip ~/Videos/ftp
- # Sync clipboard
- exec --no-startup-id autocutsel
- exec --no-startup-id autocutsel -s PRIMARY
- # }
- # WORKSPACES {
- # Change container layout
- #bindsym $mod+s layout stacking
- #bindsym $mod+w layout tabbed
- #bindsym $mod+e layout toggle split
- # Switch to workspace
- bindsym $mod+1 workspace 1
- bindsym $mod+2 workspace 2
- bindsym $mod+3 workspace 3
- bindsym $mod+4 workspace 4
- bindsym $mod+5 workspace 5
- bindsym $mod+6 workspace 6
- bindsym $mod+7 workspace 7
- bindsym $mod+8 workspace 8
- bindsym $mod+9 workspace 9
- bindsym $mod+0 workspace 10
- # Move focused container to workspace
- bindsym $mod+Shift+1 move container to workspace 1
- bindsym $mod+Shift+2 move container to workspace 2
- bindsym $mod+Shift+3 move container to workspace 3
- bindsym $mod+Shift+4 move container to workspace 4
- bindsym $mod+Shift+5 move container to workspace 5
- bindsym $mod+Shift+6 move container to workspace 6
- bindsym $mod+Shift+7 move container to workspace 7
- bindsym $mod+Shift+8 move container to workspace 8
- bindsym $mod+Shift+9 move container to workspace 9
- bindsym $mod+Shift+0 move container to workspace 10
- # Switch workspace
- bindsym $mod+Tab workspace next
- bindsym $mod+Shift+Tab workspace prev
- # }
Add Comment
Please, Sign In to add comment