You are not logged in.

#2526 2014-07-20 17:33:01

shierve
Member
Registered: 2014-07-20
Posts: 2

Re: Share your Openbox Desktop ! :)

My minimalistic openbox thing:
clean:
http://imgur.com/lcMG0re

pseudobusy:
http://imgur.com/83fWll0

pseudobusy 2:
http://imgur.com/HHv6ncm

I'm pretty new to this thigs.
The conky on top is a modification of one I found on the conky thread and the tint2 is from the tint2 config thread. If you want to know something ask smile

Offline

#2527 2014-07-24 18:56:07

Head_on_a_Stick
Member
From: London
Registered: 2014-02-20
Posts: 7,680
Website

Re: Share your Openbox Desktop ! :)

2014_07_24_164855_1920x1080_scrot.jpg
Openbox with bmpanel2 (alduin-glossy theme).
Openbox autostart file not used; ~/.xinitrc:

#!/bin/zsh

if [ -d /etc/X11/xinit/xinitrc.d ]; then
  for f in /etc/X11/xinit/xinitrc.d/*; do
    [ -x "$f" ] && . "$f"
  done
  unset f
fi

xset s 300
xfce4-power-manager
sh ~/.fehbg
volumeicon &
urxvtd -f -o &
bmpanel2 &
exec openbox

menu.xml:

<?xml version="1.0" encoding="utf-8"?>
<openbox_menu xmlns="http://openbox.org/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://openbox.org/                 file:///usr/share/openbox/menu.xsd">
	<menu id="root-menu" label="Openbox 3">
		<item label="Terminal">
			<action name="Execute">
				<execute>urxvtc</execute>
			</action>
		</item>
		<item label="Firefox">
			<action name="Execute">
				<command>firefox</command>
			</action>
		</item>
		<item label="File Manager">
			<action name="Execute">
				<execute>thunar /</execute>
			</action>
		</item>
		<separator/>
		<item label="Run...">
			<action name="Execute">
				<execute>dmenu_run -nb '#000000' -sb '#000000'</execute>
			</action>
		</item>
		<item label="Kill...">
			<action name="Execute">
				<command>xkill</command>
			</action>
		</item>
		<separator/>
		<menu id="accessories" label="Accessories">
			<item label="Archive Manager">
				<action name="Execute">
					<command>
						file-roller
					</command>
				</action>
			</item>
			<item label="BitTorrent">
				<action name="Execute">
					<execute>transmission-gtk</execute>
				</action>
			</item>
			<item label="Lynx">
				<action name="Execute">
					<execute>urxvtc -e lynx</execute>
				</action>
			</item>
			<item label="File Manager (Root)">
				<action name="Execute">
					<execute>sudo thunar</execute>
				</action>
			</item>
			<item label="Galculator">
				<action name="Execute">
					<execute>galculator</execute>
				</action>
			</item>
			<item label="GParted">
				<action name="Execute">
					<execute>sudo gparted</execute>
				</action>
			</item>
			<item label="Stellarium">
				<action name="Execute">
					<execute>stellarium</execute>
				</action>
			</item>
			<item label="Text Editor">
				<action name="Execute">
					<execute>geany</execute>
				</action>
			</item>
			<item label="XF Burn">
				<action name="Execute">
					<execute>xfburn</execute>
				</action>
			</item>
		</menu>
		<menu id="games" label="Games">
			<item label="Alien Arena">
				<action name="Execute">
					<execute>alienarena</execute>
				</action>
			</item>
			<item label="DOS Box">
				<action name="Execute">
					<execute>dosbox</execute>
				</action>
			</item>
			<item label="Counter Strike">
				<action name="Execute">
					<execute>steam steam://rungameid/240</execute>
				</action>
			</item>
			<item label="Dungeon Crawl">
				<action name="Execute">
					<execute>crawl-tiles</execute>
				</action>
			</item>
			<item label="FooBillard Plus">
				<action name="Execute">
					<command>foobillard</command>
				</action>
			</item>
			<item label="Half Life">
				<action name="Execute">
					<execute>steam steam://rungameid/280</execute>
				</action>
			</item>
			<item label="Half Life 2">
				<action name="Execute">
					<execute>steam steam://rungameid/220</execute>
				</action>
			</item>
			<item label="Half Life 2 - Lost Coast">
				<action name="Execute">
					<execute>steam steam://rungameid/340</execute>
				</action>
			</item>
			<item label="Open Arena">
				<action name="Execute">
					<execute>openarena</execute>
				</action>
			</item>
			<item label="Team Fortress 2">
				<action name="Execute">
					<execute>steam steam://rungameid/440</execute>
				</action>
			</item>
			<item label="TORCS">
				<action name="Execute">
					<execute>torcs</execute>
				</action>
			</item>
			<item label="Xonotic">
				<action name="Execute">
					<execute>xonotic-glx -sessionid Head_on_a_Stick</execute>
				</action>
			</item>
		</menu>
		<menu id="graphics" label="Graphics">
			<item label="Blender">
				<action name="Execute">
					<execute>blender</execute>
				</action>
			</item>
			<item label="The GIMP">
				<action name="Execute">
					<command>
						gimp
					</command>
				</action>
			</item>
			<item label="InkScape">
				<action name="Execute">
					<command>inkscape</command>
				</action>
			</item>
			<menu id="graphicsScreenshots" label="Take Screenshot">
				<item label="Screenshooter">
					<action name="Execute">
						<command>
							xfce4-screenshooter
						</command>
					</action>
				</item>
				<separator label="scrot"/>
				<item label="Now">
					<action name="Execute">
						<command>
							scrot '%Y-%m-%d--%s_$wx$h_scrot.png' -e 'mv $f ~/images/ &amp; viewnior ~/images/$f'
						</command>
					</action>
				</item>
				<item label="In 5 Seconds...">
					<action name="Execute">
						<command>
							scrot -d 5 '%Y-%m-%d--%s_$wx$h_scrot.png' -e 'mv $f ~/images/ &amp; viewnior ~/images/$f'
						</command>
					</action>
				</item>
				<item label="In 10 Seconds...">
					<action name="Execute">
						<command>
							scrot -d 10 '%Y-%m-%d--%s_$wx$h_scrot.png' -e 'mv $f ~/images/ &amp; viewnior ~/images/$f'
						</command>
					</action>
				</item>
				<item label="Selected Area... (click &amp; drag mouse)">
					<action name="Execute">
						<command>
							scrot -s '%Y-%m-%d--%s_$wx$h_scrot.png' -e 'mv $f ~/images/ &amp; viewnior ~/images/$f'
						</command>
					</action>
				</item>
 			</menu>
	        	</menu>
		        <menu id="multimedia" label="Multimedia">
			<item label="Asunder">
				<action name="Execute">
					<execute>asunder</execute>
				</action>
			</item>
			<item label="Audacity">
				<action name="Execute">
					<execute>audacity</execute>
				</action>
			</item>
			<item label="Audacious">
				<action name="Execute">
					<execute>audacious</execute>
				</action>
			</item>
			<item label="SMPlayer">
				<action name="Execute">
					<command>
						smplayer
					</command>
				</action>
			</item>
		        </menu>
		        <menu id="root-menu-124547" label="Office">
			<item label="PDF Viewer">
				<action name="Execute">
					<execute>epdfview</execute>
				</action>
			</item>
			<item label="LibreOffice Write">
				<action name="Execute">
					<execute>lowrite</execute>
				</action>
			</item>
			<item label="LibreOffice Draw">
				<action name="Execute">
					<execute>lodraw</execute>
				</action>
			</item>
			<item label="LibreOffice DataBase">
				<action name="Execute">
					<execute>lobase</execute>
				</action>
			</item>
			<item label="LibreOffice Maths">
				<action name="Execute">
					<execute>lomath</execute>
				</action>
			</item>
			<item label="LibreOffice Calc">
				<action name="Execute">
					<execute>localc</execute>
				</action>
			</item>
			<item label="LibreOffice Presentation">
				<action name="Execute">
					<execute>loimpress</execute>
				</action>
			</item>
		</menu>
		<separator/>
		<!--<menu id="help" label="Help" execute="cb-help-pipemenu" />-->
		<menu id="root-menu-582636" label="Settings">
			<item label="Appearance">
				<action name="Execute">
					<execute>lxappearance</execute>
				</action>
			</item>
			<menu id="root-menu-582636-73272" label="Openbox">
				<item label="Edit menu">
					<action name="Execute">
						 <execute>obmenu</execute>
					</action>
				</item>
				<item label="Edit theme">
					<action name="Execute">
						<execute>obconf</execute>
					</action>
				</item>
				<item label="Edit config.">
					<action name="Execute">
						<execute>urxvtc -e nano ~/.config/openbox/rc.xml</execute>
					</action>
				</item>
				<item label="Reload">
					<action name="Reconfigure"/>
				</item>
			</menu>
			<menu id="root-menu-582636-3378" label="Tint2">
				<item label="tint2rc">
					<action name="Execute">
						<execute>urxvtc -e nano ~/.config/tint2/tint2rc</execute>
					</action>
				</item>
				<item label="Restart">
					<action name="Execute">
						<execute>killall -SIGUSR1 tint2</execute>
					</action>
				</item>
			</menu>
			<item label=".xinitrc">
				<action name="Execute">
					<execute>urxvtc -e nano ~/.xinitopenbox</execute>
				</action>
			</item>
			<item label=".zshrc">
				<action name="Execute">
					<execute>urxvtc -e nano ~/.zshrc</execute>
				</action>
			</item>
		</menu>
		<separator/>
		<item label="Exit">
			<action name="Execute">
				<execute>killall openbox</execute>
			</action>
		</item>
		<item label="Reboot">
			<action name="Execute">
				<execute>systemctl reboot -i</execute>
			</action>
		</item>
		<item label="Shutdown">
			<action name="Execute">
				<execute>systemctl poweroff -i</execute>
			</action>
		</item>
	</menu>
</openbox_menu>

Offline

#2528 2014-07-27 21:25:36

Asbestbrezel
Member
Registered: 2014-07-27
Posts: 67

Re: Share your Openbox Desktop ! :)

Some older shot, but still up to date:

2014-01-26-192936_1923gb7t.png

Offline

#2529 2014-07-29 15:08:35

jedijimi
Member
From: Hartford Wi
Registered: 2013-12-10
Posts: 93

Re: Share your Openbox Desktop ! :)

Here is my Openbox, tint2, Conky

Clean http://imgur.com/L33ejOU,IJsetEQ#1

Pretend dirty http://imgur.com/L33ejOU,IJsetEQ#0


Crude matter we are not, Luminous beings we are

Offline

#2530 2014-07-30 22:50:46

Rakksor
Member
Registered: 2013-04-12
Posts: 12

Re: Share your Openbox Desktop ! :)

I like both the design of OS X Yosemite and Google Now, so the only logical conclusion was to mix the two big_smile

applications: conky, tint2, plank, compton
gtk theme: modified numix
icon theme: slightly modified flattr
conky theme: modified version of this
wallpapers: rocky mountains (I made a script which changes them according to daytime and weather, but it depends on the google now conky)

clean
flqpYpBs.png

fake dirty (thunar, lxappearance, lxtask, galculator)
jbdQI1Gs.png

midori
gUPGF0Js.png

gmusicbrowser (best music player ever cool)
h70bxnDs.png

If you want anything I'll be happy to share wink

Offline

#2531 2014-07-31 03:38:12

GSF1200S
Member
Registered: 2008-12-24
Posts: 474

Re: Share your Openbox Desktop ! :)

Rakksor wrote:

I like both the design of OS X Yosemite and Google Now, so the only logical conclusion was to mix the two big_smile

applications: conky, tint2, plank, compton
gtk theme: modified numix
icon theme: slightly modified flattr
conky theme: modified version of this
wallpapers: rocky mountains (I made a script which changes them according to daytime and weather, but it depends on the google now conky)

clean
http://i.imgur.com/flqpYpBs.png

fake dirty (thunar, lxappearance, lxtask, galculator)
http://i.imgur.com/jbdQI1Gs.png

midori
http://i.imgur.com/gUPGF0Js.png

gmusicbrowser (best music player ever cool)
http://i.imgur.com/h70bxnDs.png

If you want anything I'll be happy to share wink

This is one of the few light theme setups I actually like. I have always wanted to get a good left panel/dock setup instead of bottom panel (xfce4-panel in my case). Can plank be used without compton as well?

Offline

#2532 2014-07-31 11:01:15

Rakksor
Member
Registered: 2013-04-12
Posts: 12

Re: Share your Openbox Desktop ! :)

GSF1200S wrote:

This is one of the few light theme setups I actually like. I have always wanted to get a good left panel/dock setup instead of bottom panel (xfce4-panel in my case). Can plank be used without compton as well?

Yeah it works perfectly without compton. It doesn't support fake transparency like tint2 though (cairo dock would as far as I know).

Here's a quick test without compton running:

uKYZqfSs.png

The only problem is that you can't see the clock now. I inserted an empty application at the top because you can't offset the dock icons from the screen edge, but that of course only works if plank is transparent.

Offline

#2533 2014-07-31 16:39:08

Head_on_a_Stick
Member
From: London
Registered: 2014-02-20
Posts: 7,680
Website

Re: Share your Openbox Desktop ! :)

@Rakksor --- exceptional Tint2 setup: mind sharing yout tint2rc plz?

Offline

#2534 2014-07-31 20:30:15

Rakksor
Member
Registered: 2013-04-12
Posts: 12

Re: Share your Openbox Desktop ! :)

Head_on_a_Stick wrote:

@Rakksor --- exceptional Tint2 setup: mind sharing yout tint2rc plz?

Thanks, you might be disappointed though, I applied the blurry background directly to the wallpapers in gimp, tint2 and plank are completely transparent. wink

Here you go anyways:

# Tint2 config file

# Background definitions
# ID 1
rounded = 0
border_width = 0
background_color = #787878 0
border_color = #22aaee 0

# ID 2
rounded = 3
border_width = 0
background_color = #FFFFFF 0
border_color = #FFFFFF 0

# ID 3
rounded = 3
border_width = 1
background_color = #000000 100
border_color = #000000 100

# Panel
panel_monitor = all
panel_position = bottom left vertical
panel_items = CTSL
panel_size = 100% 62
panel_margin = 0 0
panel_padding = 7 0 7
panel_dock = 0
wm_menu = 0
panel_layer = bottom
panel_background_id = 1

# Panel Autohide
autohide = 0
autohide_show_timeout = 0.3
autohide_hide_timeout = 2
autohide_height = 2
strut_policy = follow_size

# Launcher
launcher_padding = 10 20 0
launcher_background_id = 0
launcher_icon_theme = flattr-icons-master
launcher_icon_size = 24
launcher_item_app = /usr/share/applications/menu.desktop

# Taskbar
taskbar_mode = single_desktop
taskbar_padding = 0 0 0
taskbar_background_id = 0
taskbar_active_background_id = 0

# Tasks
urgent_nb_of_blink = 8
task_icon = 0
task_text = 0
task_centered = 1
task_maximum_size = 1 1
task_padding = 0 0
task_background_id = 0
task_active_background_id = 0
task_urgent_background_id = 0
task_iconified_background_id = 0
task_tooltip = 0

# Task Icons
task_icon_asb = 100 0 0
task_active_icon_asb = 100 0 0
task_urgent_icon_asb = 100 0 0
task_iconified_icon_asb = 100 0 0

# Fonts
task_font = sans 7
task_font_color = #FFFFFF 68
task_active_font_color = #FFFFFF 83
task_urgent_font_color = #FFFFFF 83
task_iconified_font_color = #FFFFFF 68
font_shadow = 1

# System Tray
systray = 1
systray_padding = 0 20 10
systray_sort = right2left
systray_background_id = 0
systray_icon_size = 16
systray_icon_asb = 100 0 0

# Clock
time1_format = %H:%M
time1_font = Nimbus Sans L Bold 14
time2_format = %a %d
time2_font = sans bold 8
clock_font_color = #FFFFFF 100
clock_padding = 2 0
clock_background_id = 0
clock_rclick_command = orage

# Tooltips
tooltip_padding = 2 2
tooltip_show_timeout = 0.7
tooltip_hide_timeout = 0.3
tooltip_background_id = 1
tooltip_font = sans 10
tooltip_font_color = #000000 80

# Mouse
mouse_middle = none
mouse_right = close
mouse_scroll_up = toggle
mouse_scroll_down = iconify

# Battery
battery = 0
battery_low_status = 10
battery_low_cmd = notify-send "battery low"
battery_hide = 0
bat1_font = sans 0
bat2_font = sans 0
battery_font_color = #FFFFFF 74
battery_padding = -4 0
battery_background_id = 0

# End of config

And, just in case, the plank theme:

[PlankDrawingTheme]
#The roundness of the top corners.
TopRoundness=0
#The roundness of the bottom corners.
BottomRoundness=0
#The thickness (in pixels) of lines drawn.
LineWidth=0
#The color (RGBA) of the outer stroke.
OuterStrokeColor=120;;120;;120;;0
#The starting color (RGBA) of the fill gradient.
FillStartColor=120;;120;;120;;0
#The ending color (RGBA) of the fill gradient.
FillEndColor=120;;120;;120;;0
#The color (RGBA) of the inner stroke.
InnerStrokeColor=45;;45;;45;;0

[PlankDrawingDockTheme]
#The padding on the left/right dock edges, in tenths of a percent of IconSize.
HorizPadding=0
#The padding on the top dock edge, in tenths of a percent of IconSize.
TopPadding=1.5
#The padding on the bottom dock edge, in tenths of a percent of IconSize.
BottomPadding=1.5
#The padding between items on the dock, in tenths of a percent of IconSize.
ItemPadding=2
#The size of item indicators, in tenths of a percent of IconSize.
IndicatorSize=10
#The size of the icon-shadow behind every item, in tenths of a percent of IconSize.
IconShadowSize=0
#The height (in percent of IconSize) to bounce an icon when the application sets urgent.
UrgentBounceHeight=1.6666666666666667
#The height (in percent of IconSize) to bounce an icon when launching an application.
LaunchBounceHeight=1
#The opacity value (0 to 1) to fade the dock to when hiding it.
FadeOpacity=1
#The amount of time (in ms) for click animations.
ClickTime=300
#The amount of time (in ms) to bounce an urgent icon.
UrgentBounceTime=600
#The amount of time (in ms) to bounce an icon when launching an application.
LaunchBounceTime=600
#The amount of time (in ms) for active window indicator animations.
ActiveTime=300
#The amount of time (in ms) to slide icons into/out of the dock.
SlideTime=300
#The time (in ms) to fade the dock in/out on a hide (if FadeOpacity is < 1).
FadeTime=250
#The time (in ms) to slide the dock in/out on a hide (if FadeOpacity is 1).
HideTime=150
#The size of the urgent glow (shown when dock is hidden), in tenths of a percent of IconSize.
GlowSize=30
#The total time (in ms) to show the hidden-dock urgent glow.
GlowTime=10000
#The time (in ms) of each pulse of the hidden-dock urgent glow.
GlowPulseTime=2000
#The hue-shift (-180 to 180) of the urgent indicator color.
UrgentHueShift=150

Offline

#2535 2014-08-12 00:17:11

radc
Member
Registered: 2013-03-02
Posts: 8

Re: Share your Openbox Desktop ! :)

@Rakksor mind sharing your modified numix gtk theme? those ArchNumix* , thx!

Offline

#2536 2014-08-19 16:20:33

tzoi516
Member
Registered: 2014-05-02
Posts: 76

Re: Share your Openbox Desktop ! :)

jedijimi wrote:

Here is my Openbox, tint2, Conky

Clean http://imgur.com/L33ejOU,IJsetEQ#1

Pretend dirty http://imgur.com/L33ejOU,IJsetEQ#0

What apps are you using for Eq and Mixer? Thanks.

Offline

#2537 2014-08-20 07:37:29

GSF1200S
Member
Registered: 2008-12-24
Posts: 474

Re: Share your Openbox Desktop ! :)

Rakksor wrote:
GSF1200S wrote:

This is one of the few light theme setups I actually like. I have always wanted to get a good left panel/dock setup instead of bottom panel (xfce4-panel in my case). Can plank be used without compton as well?

Yeah it works perfectly without compton. It doesn't support fake transparency like tint2 though (cairo dock would as far as I know).

Here's a quick test without compton running:

http://i.imgur.com/uKYZqfSs.png

The only problem is that you can't see the clock now. I inserted an empty application at the top because you can't offset the dock icons from the screen edge, but that of course only works if plank is transparent.

Good info thanks. Ive been meaning to get a good light theme and setup a left side dock, so this will help smile

Offline

#2538 2014-08-29 23:31:42

Mindstormscreator
Member
Registered: 2012-07-01
Posts: 186

Re: Share your Openbox Desktop ! :)

@Rakksor Your desktop is pretty inspirational. Would you mind sharing the modified blurry wallpapers and your modification of the Google Now conky config? Much appreciated.

Offline

#2539 2014-08-30 06:06:52

Rasi
Member
From: Germany
Registered: 2007-08-14
Posts: 1,914
Website

Re: Share your Openbox Desktop ! :)

GSF1200S wrote:

This is one of the few light theme setups I actually like. I have always wanted to get a good left panel/dock setup instead of bottom panel (xfce4-panel in my case). Can plank be used without compton as well?

xfce panel can do this too: https://fb.53280.de/S349/


He hoped and prayed that there wasn't an afterlife. Then he realized there was a contradiction involved here and merely hoped that there wasn't an afterlife.

Douglas Adams

Offline

#2540 2014-08-30 07:28:36

orschiro
Member
Registered: 2009-06-04
Posts: 2,136
Website

Re: Share your Openbox Desktop ! :)

Mindstormscreator wrote:

@Rakksor Your desktop is pretty inspirational. Would you mind sharing the modified blurry wallpapers and your modification of the Google Now conky config? Much appreciated.

I can only agree! It would actually be great if your setup & configuration could be put into a more or less generic package bundle to be installed with pacman. smile

Offline

#2541 2014-09-28 00:28:38

Rakksor
Member
Registered: 2013-04-12
Posts: 12

Re: Share your Openbox Desktop ! :)

Sorry for answering so late (in my defense, I had three weeks of military service roll)

@radc: Whoa all of them? yikes
Here you go (I changed the names a bit)

Some of them wont really work with GTK3, I just changed some things to make Transmission and Evince look more or less like the GTK2 applications.

@Mindstormscreator:
Thank you smile
The Wallpapers and the conkyrc:

# Conky Google Now style #

# Conky settings #
background no
update_interval 15
double_buffer yes
no_buffers yes

# Window specifications #
own_window yes
own_window_type normal
own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
own_window_title 
own_window_colour FFFFFF

minimum_size 300

# Alignment #
alignment tr
gap_x 40
gap_y 40

border_inner_margin 15
border_outer_margin 0

# Graphics settings #
draw_shades no
draw_outline no
draw_borders no
draw_graph_borders no

# Text settings #
use_xft yes
xftalpha 0
xftfont Liberation Sans:size=10

override_utf8_locale yes

imlib_cache_size 0

# Color scheme #
default_color 666666

color1 0099CC
color2 9933CC
color3 669900
color4 FF8800
color5 CC0000
color6 999999
color7 DDDDDD

TEXT
${execi 300 curl -s "http://weather.yahooapis.com/forecastrss?w=784794&u=c" -o ~/.cache/weather.xml}${font Liberation Sans:size=15}${execi 300 grep "yweather:location" ~/.cache/weather.xml | grep -o "city=\"[^\"]*\"" | grep -o "\"[^\"]*\"" | grep -o "[^\"]*"}, ${execi 300 grep "yweather:location" ~/.cache/weather.xml | grep -o "country=\"[^\"]*\"" | grep -o "\"[^\"]*\"" | grep -o "[^\"]*"}         ${execi 300 date +"%d.%m.%Y"}${font}
${voffset 15}${font Liberation Sans:size=70}${alignr}${execi 300 grep "yweather:condition" ~/.cache/weather.xml | grep -o "temp=\"[^\"]*\"" | grep -o "\"[^\"]*\"" | grep -o "[^\"]*"}°${font}${voffset -30}
${execi 300 cp -f ~/.conky-google-now_light/$(grep "yweather:condition" ~/.cache/weather.xml | grep -o "code=\"[^\"]*\"" | grep -o "\"[^\"]*\"" | grep -o "[^\"]*").png ~/.cache/weather.png}${image ~/.cache/weather.png -p 0,45 -s 60x60}
${execi 300 grep "yweather:condition" ~/.cache/weather.xml | grep -o "text=\"[^\"]*\"" | grep -o "\"[^\"]*\"" | grep -o "[^\"]*" | tr '[a-z]' '[A-Z]'}${voffset 12}
${image ~/.conky-google-now_light/wind.png -p 0,135 -s 15x15}${goto 35}${execi 300 grep "yweather:wind" ~/.cache/weather.xml | grep -o "speed=\"[^\"]*\"" | grep -o "\"[^\"]*\"" | grep -o "[^\"]*"}${execi 300 grep "yweather:units" ~/.cache/weather.xml | grep -o "speed=\"[^\"]*\"" | grep -o "\"[^\"]*\"" | grep -o "[^\"]*"}${voffset 5}
${image ~/.conky-google-now_light/humidity.png -p 0,155 -s 15x15}${goto 35}${execi 300 grep "yweather:atmosphere" ~/.cache/weather.xml | grep -o "humidity=\"[^\"]*\"" | grep -o "\"[^\"]*\"" | grep -o "[^\"]*"}%${voffset 15}
${goto 18}${execi 300 grep "yweather:forecast" ~/.cache/weather.xml | grep -o "day=\"[^\"]*\"" | grep -o "\"[^\"]*\"" | grep -o "[^\"]*" | awk 'NR==1' | tr '[a-z]' '[A-Z]'}${goto 88}${execi 300 grep "yweather:forecast" ~/.cache/weather.xml | grep -o "day=\"[^\"]*\"" | grep -o "\"[^\"]*\"" | grep -o "[^\"]*" | awk 'NR==2' | tr '[a-z]' '[A-Z]'}${goto 158}${execi 300 grep "yweather:forecast" ~/.cache/weather.xml | grep -o "day=\"[^\"]*\"" | grep -o "\"[^\"]*\"" | grep -o "[^\"]*" | awk 'NR==3' | tr '[a-z]' '[A-Z]'}${goto 228}${execi 300 grep "yweather:forecast" ~/.cache/weather.xml | grep -o "day=\"[^\"]*\"" | grep -o "\"[^\"]*\"" | grep -o "[^\"]*" | awk 'NR==4' | tr '[a-z]' '[A-Z]'}${goto 298}${execi 300 grep "yweather:forecast" ~/.cache/weather.xml | grep -o "day=\"[^\"]*\"" | grep -o "\"[^\"]*\"" | grep -o "[^\"]*" | awk 'NR==5' | tr '[a-z]' '[A-Z]'}
${execi 300 cp -f ~/.conky-google-now_light/$(grep "yweather:forecast" ~/.cache/weather.xml | grep -o "code=\"[^\"]*\"" | grep -o "\"[^\"]*\"" | grep -o "[^\"]*" | awk 'NR==1').png ~/.cache/weather-1.png}${image ~/.cache/weather-1.png -p 0,210 -s 30x30}${execi 300 cp -f ~/.conky-google-now_light/$(grep "yweather:forecast" ~/.cache/weather.xml | grep -o "code=\"[^\"]*\"" | grep -o "\"[^\"]*\"" | grep -o "[^\"]*" | awk 'NR==2').png ~/.cache/weather-2.png}${image ~/.cache/weather-2.png -p 70,210 -s 30x30}${execi 300 cp -f ~/.conky-google-now_light/$(grep "yweather:forecast" ~/.cache/weather.xml | grep -o "code=\"[^\"]*\"" | grep -o "\"[^\"]*\"" | grep -o "[^\"]*" | awk 'NR==3').png ~/.cache/weather-3.png}${image ~/.cache/weather-3.png -p 140,210 -s 30x30}${execi 300 cp -f ~/.conky-google-now_light/$(grep "yweather:forecast" ~/.cache/weather.xml | grep -o "code=\"[^\"]*\"" | grep -o "\"[^\"]*\"" | grep -o "[^\"]*" | awk 'NR==4').png ~/.cache/weather-4.png}${image ~/.cache/weather-4.png -p 210,210 -s 30x30}${execi 300 cp -f ~/.conky-google-now_light/$(grep "yweather:forecast" ~/.cache/weather.xml | grep -o "code=\"[^\"]*\"" | grep -o "\"[^\"]*\"" | grep -o "[^\"]*" | awk 'NR==5').png ~/.cache/weather-5.png}${image ~/.cache/weather-5.png -p 280,210 -s 30x30}${voffset 35}
${goto 20}${execi 300 grep "yweather:forecast" ~/.cache/weather.xml | grep -o "high=\"[^\"]*\"" | grep -o "\"[^\"]*\"" | grep -o "[^\"]*" | awk 'NR==1'}°${goto 90}${execi 300 grep "yweather:forecast" ~/.cache/weather.xml | grep -o "high=\"[^\"]*\"" | grep -o "\"[^\"]*\"" | grep -o "[^\"]*" | awk 'NR==2'}°${goto 160}${execi 300 grep "yweather:forecast" ~/.cache/weather.xml | grep -o "high=\"[^\"]*\"" | grep -o "\"[^\"]*\"" | grep -o "[^\"]*" | awk 'NR==3'}°${goto 230}${execi 300 grep "yweather:forecast" ~/.cache/weather.xml | grep -o "high=\"[^\"]*\"" | grep -o "\"[^\"]*\"" | grep -o "[^\"]*" | awk 'NR==4'}°${goto 300}${execi 300 grep "yweather:forecast" ~/.cache/weather.xml | grep -o "high=\"[^\"]*\"" | grep -o "\"[^\"]*\"" | grep -o "[^\"]*" | awk 'NR==5'}°${voffset 5}
${color6}${goto 20}${execi 300 grep "yweather:forecast" ~/.cache/weather.xml | grep -o "low=\"[^\"]*\"" | grep -o "\"[^\"]*\"" | grep -o "[^\"]*" | awk 'NR==1'}°${goto 90}${execi 300 grep "yweather:forecast" ~/.cache/weather.xml | grep -o "low=\"[^\"]*\"" | grep -o "\"[^\"]*\"" | grep -o "[^\"]*" | awk 'NR==2'}°${goto 160}${execi 300 grep "yweather:forecast" ~/.cache/weather.xml | grep -o "low=\"[^\"]*\"" | grep -o "\"[^\"]*\"" | grep -o "[^\"]*" | awk 'NR==3'}°${goto 230}${execi 300 grep "yweather:forecast" ~/.cache/weather.xml | grep -o "low=\"[^\"]*\"" | grep -o "\"[^\"]*\"" | grep -o "[^\"]*" | awk 'NR==4'}°${goto 300}${execi 300 grep "yweather:forecast" ~/.cache/weather.xml | grep -o "low=\"[^\"]*\"" | grep -o "\"[^\"]*\"" | grep -o "[^\"]*" | awk 'NR==5'}°${color}${voffset -5}

I changed the name of the folder from the original config, so you need to rename it to .conky-google-now_light

@orschiro: Wow thanks big_smile
Well the only possibility would be an AUR package, but I guess I you should be able to recreate it now wink

Offline

#2542 2014-10-03 23:26:41

krashh
Member
Registered: 2014-10-03
Posts: 1

Re: Share your Openbox Desktop ! :)

Screenshot_from_2014_10_03_23_06_40.jpg

openbox+tint2+conky

Offline

#2543 2014-10-08 09:03:44

okraits
Member
From: Germany
Registered: 2006-03-02
Posts: 142
Website

Re: Share your Openbox Desktop ! :)

sharp_openbox_by_okraits-d81gxob.png
Full size
Latest desktop featuring my openbox sharp theme, some urxvtc's with irssi and moc, xfce4-panel, geany and my browser lariza.

Offline

#2544 2014-10-25 04:17:25

sonbn
Member
Registered: 2014-10-25
Posts: 1

Re: Share your Openbox Desktop ! :)

@Rakksor: Your setup is so beautiful!
Can you share the script that change the wallpapers when the weather and time of the day change?
Thanks in advance smile

Offline

#2545 2014-10-25 22:32:42

josemota
Member
Registered: 2010-10-24
Posts: 47

Re: Share your Openbox Desktop ! :)

okraits wrote:

http://th04.deviantart.net/fs70/150/f/2 … 81gxob.png
Full size
Latest desktop featuring my openbox sharp theme, some urxvtc's with irssi and moc, xfce4-panel, geany and my browser lariza.

Nice setup there. I wonder if you could share you used that terminal font of yours, is it cure.pcf? I'm not sure how to use it and would love to. Thanks!

Offline

#2546 2014-10-28 09:57:12

fetyr2004
Member
Registered: 2013-12-14
Posts: 38

Re: Share your Openbox Desktop ! :)

Started messing around with openbox.  Trying to make it as useable and minimal feeling as I can, without being too minimalistic.

http://i.imgur.com/M2MmIgZ.png

Still working on the conky config

Fet.


Programming is a race between programmers making better software the the universe making bigger idiots.  So far the universe is winning.

Offline

#2547 2014-10-28 15:29:49

Nietzsche
Member
Registered: 2014-10-26
Posts: 15

Re: Share your Openbox Desktop ! :)

fetyr2004 wrote:

Started messing around with openbox.  Trying to make it as useable and minimal feeling as I can, without being too minimalistic.

http://i.imgur.com/M2MmIgZ.png

Still working on the conky config

Fet.

Pretty nice. Except the strange contrast bewteen really bold fonts in the terminal emulator and the too thin ones in the FM.

Here's mine: http://a.pomf.se/aorkdu.png

Offline

#2548 2014-10-28 20:36:31

kelloco2
Member
Registered: 2012-02-13
Posts: 124

Re: Share your Openbox Desktop ! :)

fetyr2004 wrote:

Started messing around with openbox.  Trying to make it as useable and minimal feeling as I can, without being too minimalistic.

http://i.imgur.com/M2MmIgZ.png

Still working on the conky config

Fet.

wallpaper pls.


sorry for my english. {Arch Linux, Debian} User

Offline

#2549 2014-10-30 02:18:47

fetyr2004
Member
Registered: 2013-12-14
Posts: 38

Re: Share your Openbox Desktop ! :)

kelloco2 wrote:
fetyr2004 wrote:

Started messing around with openbox.  Trying to make it as useable and minimal feeling as I can, without being too minimalistic.

http://i.imgur.com/M2MmIgZ.png

Still working on the conky config

Fet.

wallpaper pls.

Sure.  I got it from Deviant art.
http://malisremac.deviantart.com/art/Ar … -311824516


Nietzsche wrote:
fetyr2004 wrote:

Started messing around with openbox.  Trying to make it as useable and minimal feeling as I can, without being too minimalistic.

http://i.imgur.com/M2MmIgZ.png

Still working on the conky config

Fet.

Pretty nice. Except the strange contrast bewteen really bold fonts in the terminal emulator and the too thin ones in the FM.

Here's mine: http://a.pomf.se/aorkdu.png

Yea I'm still working out a few kinks xD


Programming is a race between programmers making better software the the universe making bigger idiots.  So far the universe is winning.

Offline

#2550 2014-11-04 09:55:41

okraits
Member
From: Germany
Registered: 2006-03-02
Posts: 142
Website

Re: Share your Openbox Desktop ! :)

josemota wrote:
okraits wrote:

http://th04.deviantart.net/fs70/150/f/2 … 81gxob.png
Full size
Latest desktop featuring my openbox sharp theme, some urxvtc's with irssi and moc, xfce4-panel, geany and my browser lariza.

Nice setup there. I wonder if you could share you used that terminal font of yours, is it cure.pcf? I'm not sure how to use it and would love to. Thanks!

Sorry for not answering in such a long time - i didn't see your question. Thanks very much smile The terminal font is bleed2 from http://vico.kleinplanet.de/fonts.html.

My font setup is this:

Font is at ~/.fonts/bleed2.pcf

mkfontdir ~/.fonts

In my .Xresources:

URxvt*font:             x:-*-bleed2-*-*-*-*-*-*-*-*-*-*-*-*
URxvt*boldFont:      x:-*-bleed2-*-*-*-*-*-*-*-*-*-*-*-*

In my .xinitrc:

xrdb -merge $HOME/.Xresources
xset +fp $HOME/.fonts

Offline

Board footer

Powered by FluxBB