some important changes to adapt for the new workplace
This commit is contained in:
parent
de23fcf41f
commit
fd731dc075
1 changed files with 10 additions and 13 deletions
23
rc.lua
23
rc.lua
|
@ -40,6 +40,8 @@ function update_wallpapers(wallpaper)
|
||||||
gears.wallpaper.centered(wallpaper, s)
|
gears.wallpaper.centered(wallpaper, s)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
-- switch mode to two screens
|
||||||
-- }}}
|
-- }}}
|
||||||
-- {{{ Error handling
|
-- {{{ Error handling
|
||||||
-- Check if awesome encountered an error during startup and fell back to
|
-- Check if awesome encountered an error during startup and fell back to
|
||||||
|
@ -241,10 +243,11 @@ mytextclock:set_font('Terminus Bold 11')
|
||||||
mytextbox = wibox.widget.textbox()
|
mytextbox = wibox.widget.textbox()
|
||||||
mytextbox:set_text('')
|
mytextbox:set_text('')
|
||||||
mytextbox:set_font('Terminus 9')
|
mytextbox:set_font('Terminus 9')
|
||||||
mytextbox_bg = wibox.widget.background()
|
-- A box to show info about new mail, temporary unneeded
|
||||||
mytextbox_bg:set_widget(mytextbox)
|
--mytextbox_bg = wibox.widget.background()
|
||||||
mytextbox_bg:set_bg(theme.bg_minimize)
|
--mytextbox_bg:set_widget(mytextbox)
|
||||||
mytextbox_bg:set_fg(theme.fg_minimize)
|
--mytextbox_bg:set_bg(theme.bg_minimize)
|
||||||
|
--mytextbox_bg:set_fg(theme.fg_minimize)
|
||||||
-- Create keyboard layout indicator widget
|
-- Create keyboard layout indicator widget
|
||||||
--mykblayout = wibox.widget.textbox()
|
--mykblayout = wibox.widget.textbox()
|
||||||
--mykblayout:set_text('US')
|
--mykblayout:set_text('US')
|
||||||
|
@ -337,21 +340,15 @@ for s = 1, screen.count() do
|
||||||
local right_layout = wibox.layout.fixed.horizontal()
|
local right_layout = wibox.layout.fixed.horizontal()
|
||||||
if s == 1 then
|
if s == 1 then
|
||||||
right_layout:add(mypromptbox[s])
|
right_layout:add(mypromptbox[s])
|
||||||
if screen.count() == 1 then
|
--right_layout:add(mytextbox_bg)
|
||||||
right_layout:add(mytextbox_bg)
|
right_layout:add(mytaglist[s])
|
||||||
right_layout:add(mytaglist[s])
|
right_layout:add(wibox.widget.systray())
|
||||||
right_layout:add(wibox.widget.systray())
|
|
||||||
else
|
|
||||||
right_layout:add(mytaglist[s])
|
|
||||||
end
|
|
||||||
right_layout:add(mytextclock)
|
right_layout:add(mytextclock)
|
||||||
right_layout:add(mylayoutbox[s])
|
right_layout:add(mylayoutbox[s])
|
||||||
elseif s == 2 then
|
elseif s == 2 then
|
||||||
left_layout:add(mylayoutbox[s])
|
left_layout:add(mylayoutbox[s])
|
||||||
left_layout:add(mytextclock)
|
left_layout:add(mytextclock)
|
||||||
left_layout:add(wibox.widget.systray())
|
|
||||||
left_layout:add(mytaglist[s])
|
left_layout:add(mytaglist[s])
|
||||||
left_layout:add(mytextbox_bg)
|
|
||||||
left_layout:add(mypromptbox[s])
|
left_layout:add(mypromptbox[s])
|
||||||
else
|
else
|
||||||
left_layout:add(mytaglist[s])
|
left_layout:add(mytaglist[s])
|
||||||
|
|
Loading…
Reference in a new issue