Advertisement
Guest User

Untitled

a guest
Mar 24th, 2017
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.53 KB | None | 0 0
  1. set $mod Mod4
  2.  
  3. # i3 default font
  4. font pango:System San Francisco Display 9
  5.  
  6. # I use those colors at bar and window color settings
  7. set $bg-color #2f343f
  8. set $inactive-bg-color #2f343f
  9. set $text-color #f3f4f5
  10. set $inactive-text-color #676E7D
  11. set $urgent-bg-color #E53935
  12.  
  13. bindsym $mod+d exec rofi -show run -lines 3 -eh 2 -width 100 -padding 300 -opacity "85" -bw 0 -bc "$bg-color" -bg "$bg-color" -fg "$text-color" -hlbg "$bg-color" -hlfg "#9575cd" -font "System San Francisco Display 14"
  14.  
  15. # you need to bind some keys like volume and brightness
  16. bindsym XF86AudioRaiseVolume exec amixer -D pulse sset Master 5%+ # increase sound volume
  17. bindsym XF86AudioLowerVolume exec amixer -D pulse sset Master 5%- # decrease sound volume
  18. bindsym XF86AudioMute exec amixer -D pulse sset Master -- 0% # mute sound
  19.  
  20. bindsym XF86MonBrightnessUp exec xbacklight + 10 # increase screen brightness
  21. bindsym XF86MonBrightnessDown exec xbacklight - 10 # decrease screen brightness
  22.  
  23. # I use spotify as music player, so I had to setup play/pause keys too
  24. bindsym XF86AudioPrev exec dbus-send --print-reply --dest=org.mpris.MediaPlayer2.spotify /org/mpris/MediaPlayer2 org.mpris.MediaPlayer2.Player.Previous
  25. bindsym XF86AudioPlay exec dbus-send --print-reply --dest=org.mpris.MediaPlayer2.spotify /org/mpris/MediaPlayer2 org.mpris.MediaPlayer2.Player.PlayPause
  26. bindsym XF86AudioNext exec dbus-send --print-reply --dest=org.mpris.MediaPlayer2.spotify /org/mpris/MediaPlayer2 org.mpris.MediaPlayer2.Player.Next
  27.  
  28. # window colors
  29. # border background text indicator
  30. client.focused $bg-color $bg-color $text-color #00ff00
  31. client.unfocused $inactive-bg-color $inactive-bg-color $inactive-text-color #00ff00
  32. client.focused_inactive $inactive-bg-color $inactive-bg-color $inactive-text-color #00ff00
  33. client.urgent $urgent-bg-color $urgent-bg-color $text-color #00ff00
  34.  
  35. bar {
  36. status_command i3status
  37. tray_output primary
  38.  
  39. colors {
  40. background $bg-color
  41. separator #757575
  42. # border background text
  43. focused_workspace $bg-color $bg-color $text-color
  44. inactive_workspace $inactive-bg-color $inactive-bg-color $inactive-text-color
  45. urgent_workspace $urgent-bg-color $urgent-bg-color $text-color
  46. }
  47. }
  48.  
  49. # if you don’t manually set your wallpaper, it will be anything but the right one.
  50. exec_always — no-startup-id feh — bg-scale /home/marina/.wallpaper.png
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement