Added virtualarch-specific i3config.

This commit is contained in:
2013-09-22 19:42:10 +02:00
parent 6cbb1b5c0b
commit 9f523ab67c
3 changed files with 46 additions and 6 deletions

View File

@@ -39,9 +39,6 @@ set $wallpaper_directory "$HOME/Bilder/wallpaper/misc"
set $wallpaper_logfile "$HOME/.i3/logs/wallpaper.log" set $wallpaper_logfile "$HOME/.i3/logs/wallpaper.log"
set $wallpaper_interval 900 set $wallpaper_interval 900
# Path to the config file for i3status
set $path_i3status_config ~/.i3/i3status.conf
# font for window titles. ISO 10646 = Unicode # font for window titles. ISO 10646 = Unicode
#font -misc-fixed-medium-r-normal--13-120-75-75-C-70-iso10646-1 #font -misc-fixed-medium-r-normal--13-120-75-75-C-70-iso10646-1
font pango:DejaVu Sans Mono 10 font pango:DejaVu Sans Mono 10
@@ -175,8 +172,8 @@ workspace_layout default
new_window normal new_window normal
new_float normal new_float normal
# Do not show vertical borders between windows # Do not show borders at the screen edges
hide_edge_borders vertical hide_edge_borders both
# Focus follows mouse # Focus follows mouse
focus_follows_mouse yes focus_follows_mouse yes
@@ -214,7 +211,7 @@ for_window [class="^Xfce4-notifyd$"] floating enable
for_window [class="^Conky$"] floating enable for_window [class="^Conky$"] floating enable
for_window [class="^Terminator$"] border none for_window [class="^Terminator$"] border 1pixel
for_window [class="^Firefox$"] border none for_window [class="^Firefox$"] border none

View File

@@ -1,5 +1,7 @@
exec --no-startup-id dropbox start & exec --no-startup-id dropbox start &
set $path_i3status_config ~/.i3/i3status.conf
# bind some keys # bind some keys
bindsym XF86Sleep exec --no-startup-id $path_i3exit suspend bindsym XF86Sleep exec --no-startup-id $path_i3exit suspend
bindsym XF86AudioMute exec --no-startup-id amixer set Master toggle bindsym XF86AudioMute exec --no-startup-id amixer set Master toggle

View File

@@ -0,0 +1,41 @@
exec --no-startup-id dropbox start &
set $path_i3status_config ~/.i3/i3status.conf
# bind some keys
bindsym XF86Sleep exec --no-startup-id $path_i3exit suspend
bindsym XF86AudioMute exec --no-startup-id amixer set Master toggle
bindsym XF86AudioRaiseVolume exec --no-startup-id amixer set Master %5+
bindsym XF86AudioLowerVolume exec --no-startup-id amixer set Master %5-
# start i3bar to display a workspace bar (plus the system information i3status
# finds out, if available)
bar {
# always show at the bottom of the screen
mode dock
position bottom
# show a tray area
tray_output primary
# show workspace buttons
workspace_buttons yes
id bar-1
font pango:DejaVu Sans Mono 8
colors {
background #000000
statusline #ffffff
separator #666666
focused_workspace #4c7899 #285577 #ffffff
active_workspace #333333 #5f676a #ffffff
inactive_workspace #333333 #222222 #888888
urgent_workspace #2f343a #900000 #ffffff
}
i3bar_command i3bar
status_command i3status --config $path_i3status_config
}