[SOLVED]Awesome-wm's theme doesn't work

So I tried to use one of awesome's themes (zenburn,) the problem is when I startx there is just a black screen with a mouse pointer, which I am able to move.
Here is my rc.lua:
awful = require("awful")
beautiful = require('beautiful')
beautiful.init("~/.config/awesome/themes/zenburn/theme.lua")
bg_focus = beautiful.bg_focus
beautiful.init(awful.util.getdir("config") .. "/themes/zenburn/theme.lua")
Theme.lua for zenburn:
-- "Zenburn" awesome theme --
-- By Adrian C. (anrxc) --
-- Alternative icon sets and widget icons:
-- * http://awesome.naquadah.org/wiki/Nice_Icons
-- {{{ Main
theme = {}
theme.wallpaper = "/usr/share/awesome/themes/zenburn/zenburn-background.png"
-- {{{ Styles
theme.font = "sans 8"
-- {{{ Colors
theme.fg_normal = "#DCDCCC"
theme.fg_focus = "#F0DFAF"
theme.fg_urgent = "#CC9393"
theme.bg_normal = "#3F3F3F"
theme.bg_focus = "#1E2320"
theme.bg_urgent = "#3F3F3F"
theme.bg_systray = theme.bg_normal
-- {{{ Borders
theme.border_width = 2
theme.border_normal = "#3F3F3F"
theme.border_focus = "#6F6F6F"
theme.border_marked = "#CC9393"
-- {{{ Titlebars
theme.titlebar_bg_focus = "#3F3F3F"
theme.titlebar_bg_normal = "#3F3F3F"
-- There are other variable sets
-- overriding the default one when
-- defined, the sets are:
-- [taglist|tasklist]_[bg|fg]_[focus|urgent]
-- titlebar_[normal|focus]
-- tooltip_[font|opacity|fg_color|bg_color|border_width|border_color]
-- Example:
--theme.taglist_bg_focus = "#CC9393"
-- {{{ Widgets
-- You can add as many variables as
-- you wish and access them by using
-- beautiful.variable in your rc.lua
--theme.fg_widget = "#AECF96"
--theme.fg_center_widget = "#88A175"
--theme.fg_end_widget = "#FF5656"
--theme.bg_widget = "#494B4F"
--theme.border_widget = "#3F3F3F"
-- {{{ Mouse finder
theme.mouse_finder_color = "#CC9393"
-- mouse_finder_[timeout|animate_timeout|radius|factor]
-- {{{ Menu
-- Variables set for theming the menu:
-- menu_[bg|fg]_[normal|focus]
-- menu_[border_color|border_width]
theme.menu_height = 15
theme.menu_width = 100
-- {{{ Icons
-- {{{ Taglist
theme.taglist_squares_sel = "/usr/share/awesome/themes/zenburn/taglist/squarefz.png"
theme.taglist_squares_unsel = "/usr/share/awesome/themes/zenburn/taglist/squarez.png"
--theme.taglist_squares_resize = "false"
-- {{{ Misc
theme.awesome_icon = "/usr/share/awesome/themes/zenburn/awesome-icon.png"
theme.menu_submenu_icon = "/usr/share/awesome/themes/default/submenu.png"
-- {{{ Layout
theme.layout_tile = "/usr/share/awesome/themes/zenburn/layouts/tile.png"
theme.layout_tileleft = "/usr/share/awesome/themes/zenburn/layouts/tileleft.png"
theme.layout_tilebottom = "/usr/share/awesome/themes/zenburn/layouts/tilebottom.png"
theme.layout_tiletop = "/usr/share/awesome/themes/zenburn/layouts/tiletop.png"
theme.layout_fairv = "/usr/share/awesome/themes/zenburn/layouts/fairv.png"
theme.layout_fairh = "/usr/share/awesome/themes/zenburn/layouts/fairh.png"
theme.layout_spiral = "/usr/share/awesome/themes/zenburn/layouts/spiral.png"
theme.layout_dwindle = "/usr/share/awesome/themes/zenburn/layouts/dwindle.png"
theme.layout_max = "/usr/share/awesome/themes/zenburn/layouts/max.png"
theme.layout_fullscreen = "/usr/share/awesome/themes/zenburn/layouts/fullscreen.png"
theme.layout_magnifier = "/usr/share/awesome/themes/zenburn/layouts/magnifier.png"
theme.layout_floating = "/usr/share/awesome/themes/zenburn/layouts/floating.png"
-- {{{ Titlebar
theme.titlebar_close_button_focus = "/usr/share/awesome/themes/zenburn/titlebar/close_focus.png"
theme.titlebar_close_button_normal = "/usr/share/awesome/themes/zenburn/titlebar/close_normal.png"
theme.titlebar_ontop_button_focus_active = "/usr/share/awesome/themes/zenburn/titlebar/ontop_focus_active.png"
theme.titlebar_ontop_button_normal_active = "/usr/share/awesome/themes/zenburn/titlebar/ontop_normal_active.png"
theme.titlebar_ontop_button_focus_inactive = "/usr/share/awesome/themes/zenburn/titlebar/ontop_focus_inactive.png"
theme.titlebar_ontop_button_normal_inactive = "/usr/share/awesome/themes/zenburn/titlebar/ontop_normal_inactive.png"
theme.titlebar_sticky_button_focus_active = "/usr/share/awesome/themes/zenburn/titlebar/sticky_focus_active.png"
theme.titlebar_sticky_button_normal_active = "/usr/share/awesome/themes/zenburn/titlebar/sticky_normal_active.png"
theme.titlebar_sticky_button_focus_inactive = "/usr/share/awesome/themes/zenburn/titlebar/sticky_focus_inactive.png"
theme.titlebar_sticky_button_normal_inactive = "/usr/share/awesome/themes/zenburn/titlebar/sticky_normal_inactive.png"
theme.titlebar_floating_button_focus_active = "/usr/share/awesome/themes/zenburn/titlebar/floating_focus_active.png"
theme.titlebar_floating_button_normal_active = "/usr/share/awesome/themes/zenburn/titlebar/floating_normal_active.png"
theme.titlebar_floating_button_focus_inactive = "/usr/share/awesome/themes/zenburn/titlebar/floating_focus_inactive.png"
theme.titlebar_floating_button_normal_inactive = "/usr/share/awesome/themes/zenburn/titlebar/floating_normal_inactive.png"
theme.titlebar_maximized_button_focus_active = "/usr/share/awesome/themes/zenburn/titlebar/maximized_focus_active.png"
theme.titlebar_maximized_button_normal_active = "/usr/share/awesome/themes/zenburn/titlebar/maximized_normal_active.png"
theme.titlebar_maximized_button_focus_inactive = "/usr/share/awesome/themes/zenburn/titlebar/maximized_focus_inactive.png"
theme.titlebar_maximized_button_normal_inactive = "/usr/share/awesome/themes/zenburn/titlebar/maximized_normal_inactive.png"
return theme
Last edited by Mugi (2014-07-08 14:29:44)

Just change the default beautiful.init("/usr/share/awesome/themes/default/theme.lua") to beautiful.init("/usr/share/awesome/themes/zenburn/theme.lua").
Your beautiful.init points to ~/.config/awesome/themes/... which is perfectly fine if you actually copied the theme to that folder. You copied the zenburn folder, right?
Edit:
Mugi wrote:well my rc.lua is basically pointing at the theme of zenburn. It works if I don't do anything myself, that means it just picks I guess the default rc.lua, but I am not able to point at the default theme like I did with zenburn.
After reading this a couple of times, I get the feeling that the rc.lua you posted actually is all of your rc.lua... That won't work.
You can't just provide a partial rc.lua with some things you want to change.
Just copy /etc/xdg/awesome/rc.lua to ~/.config/awesome/rc.lua and change the beautiful.init line (as Proinsias already stated)
Last edited by Darkcloud (2014-07-08 11:04:17)

Similar Messages

  • [SOLVED] vfs_zip plugin for deadbeef doesn't work

    hello everybody here,
    i found vfs_zip plugin here doesn't work,
    that is, i can import music files from zip archive, but i can't play them-
    if i play those ones, the deadbeef'll be stuck ,even if i try play other files.
    so, any solution here? any idea is appreciated, and thanks in advance:-)
    BTW:
    i have installed libzip in advance, so i think it's not the cause...
    and i've tried deadbeef (from repo) and deadbeef-git (from aur), but still useless, eh
    Last edited by Cravix (2012-05-16 09:54:11)

    PhatalError wrote:
    It's working fine for me, I just zipped up 1GB (262 files) of MP3's to test it out for you, and it's working just fine for me after it imports them into DeaDBeeF.
    Open up a terminal, and type deadbeef and when you try and play the MP3's from the zipfile does it show any type of error message in the terminal? If so, paste it here.
    oh my... I found it actually can play when I tested again to see the err output... sorry to bother you for my carelessness, and thank you very much:-)
    and also, the only problem is it'll take 5s~30s before start playing after click, which made me thought it couldn't work for a year or two... I should say it's much slower than rar reader(see deadbeef archive reader i packaged in aur, you can try it:-D)
    I doubt if it's abnormal, so would you mind sharing with me that how's it going on on your computer? thanks in advanced:-)

  • [solved] Volume control in amarok doesn't work anymore

    Hi,
    since today in amarok (2.4.1) the volume control doesn't work anymore. I can change the level on the switch on the top right but it doesn't change the actual volume.
    The volume control in my KDE tray works as usual.
    Last edited by Barghest (2011-07-05 18:01:07)

    Just came back from suspend and it works again.
    Sorry for the noise.

  • [SOLVED]Something wrong with Locale, "ÅÖÄ" doesn't work in terminal.

    If you have this kind of problem stated above in the title, or similar, here is what I did...
    Make sure you have correct locale, you'll need a UTF-8 one.
    As stated in the install guide(or beginner's guide iirc) do the following:
    Uncomment  one of the locales in "/etc/locale.gen", it doesn't have to be language pacific if you're only after using UTF-8 which provides more characters than normal ASCII.
    then run "locale-gen". Make sure to set your "/etc/locale.conf" to "LANG=en_US-UTF8" of course you can choose whatever locale you want not just "en_US-UTF-8". After that make sure to reboot, it may also work with just log-out and log-in again, but I did not reboot and neither log-out and when back in. If it still doesn't work, run "locale" and "locale-a" if the output is "C" in each column just redo what I stated above, if it still not work, then you have to consult the manual, wiki and if you don't find the problem use a search-engine and if you still don't find answer here on the forums, the people here is really helpful!
    Last edited by kalle97 (2012-10-01 17:46:16)

    " Okey I uncommented sv_SE.utf8 in /etc/locale.gen ...
    You're supposed to uncomment "sv_SV.UTF-8 UTF-8", then run locale-gen (with sudo), not "sv_SE.utf8".
    That's what I did.
    https://wiki.archlinux.org/index.php/Be … ide#Locale
    ^ Except that you shouldn't use "echo" in this case. That command works well when you're logged in as root, but for sudo, not so much. Check the file with nano and you'll see that nothing changed. For sudo, use tee.
    $ sudo tee /etc/locale.conf <<< "LANG=en_US.UTF-8"
    Note: You don't necessarily need "sv_SV" for those characters to show up. Setting a "sv_SV" locale would make programs show up in Swedish instead of English - unless that's what you want. UTF-8 locales will cover those characters just fine (provided that the font from the terminal actually contains those glyphs, of course).
    So you mean I can have en_US.UTF8 as locale but still write swedish letters? So the problem is with the font or somthing, not the locale?
    If you still have problems, post the output of:
    $ ls -l /etc/profile.d/locale.sh
    $ curl sprunge.us -F sprunge=@/etc/locale.gen
    $ curl sprunge.us -F sprunge=@/etc/locale.conf
    $ locale -a
    $ locale
    Well, I did as the guide told about locale.conf, it doesn't seem to work, even if "locale" outputs correct info now, but I'll try with restarting the X server too, just in case.....

  • How do I transfer ringtones from itunes to my iphone4 syncing them doesn't work

    How do I transfer ringtones from itunes to my iphone as syncing them doesn't work

    If the songs are "in" iTunes they are "in" your computer. Are you trying to backup?
    tt2

  • [SOLVED] KDE Start New Session doesn't work from lock screen

    On my laptop, if I lock the KDE 4 session and then click Switch Users > Start New Session, I get a login screen and can log in as a different user. All good.
    If I do the same thing on my desktop, it doesn't work. When I click Switch Users > Start New Session, it doesn't start a new session or switch VTs. Instead, I just get reprompted for the existing user's password.
    Both machines are running fully updated Arch. Anyone know how I can troubleshoot this? The only difference I can think of between the laptop and desktop is that the desktop has nomodeset specified as a kernel boot parameter. (It won't boot without it.) Could this be interfering with automatic VT switching? Manual VT switching (e.g. Ctrl+Alt+F1) works fine.
    Last edited by Rob_H (2014-12-27 14:28:06)

    Little more detail. Checking the journal, I can see Xorg is failing to start on display :1. If I compare Xorg.0.log with Xorg.1.log, it appears that it's not finding the proprietary NVIDIA driver in the second case. Don't know why it would be any different for :1, though. See?
    Xorg.0.log (good):
    [ 10.219] (II) LoadModule: "glx"
    [ 10.220] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 10.293] (II) Module glx: vendor="NVIDIA Corporation"
    [ 10.293] compiled for 4.0.2, module version = 1.0.0
    [ 10.293] Module class: X.Org Server Extension
    [ 10.294] (II) NVIDIA GLX Module 343.36 Mon Dec 1 15:50:02 PST 2014
    [ 10.294] (II) Applying OutputClass "nvidia" to /dev/dri/card0
    [ 10.294] loading driver: nvidia
    [ 10.294] (==) Matched nvidia as autoconfigured driver 0
    [ 10.294] (==) Matched nouveau as autoconfigured driver 1
    [ 10.294] (==) Matched nv as autoconfigured driver 2
    [ 10.294] (==) Matched nouveau as autoconfigured driver 3
    [ 10.294] (==) Matched nv as autoconfigured driver 4
    [ 10.294] (==) Matched modesetting as autoconfigured driver 5
    [ 10.294] (==) Matched fbdev as autoconfigured driver 6
    [ 10.294] (==) Matched vesa as autoconfigured driver 7
    [ 10.294] (==) Assigned the driver to the xf86ConfigLayout
    [ 10.294] (II) LoadModule: "nvidia"
    [ 10.294] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
    [ 10.300] (II) Module nvidia: vendor="NVIDIA Corporation"
    [ 10.300] compiled for 4.0.2, module version = 1.0.0
    [ 10.300] Module class: X.Org Video Driver
    Xorg.1.log (bad):
    [ 2153.825] (II) LoadModule: "glx"
    [ 2153.825] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 2153.833] (II) Module glx: vendor="NVIDIA Corporation"
    [ 2153.833] compiled for 4.0.2, module version = 1.0.0
    [ 2153.833] Module class: X.Org Server Extension
    [ 2153.833] (II) NVIDIA GLX Module 343.36 Mon Dec 1 15:50:02 PST 2014
    [ 2153.833] (==) Matched nouveau as autoconfigured driver 0
    [ 2153.833] (==) Matched nv as autoconfigured driver 1
    [ 2153.833] (==) Matched modesetting as autoconfigured driver 2
    [ 2153.833] (==) Matched fbdev as autoconfigured driver 3
    [ 2153.833] (==) Matched vesa as autoconfigured driver 4
    [ 2153.833] (==) Assigned the driver to the xf86ConfigLayout
    [ 2153.833] (II) LoadModule: "nouveau"
    [ 2153.833] (WW) Warning, couldn't open module nouveau
    Any idea what would cause it to work for :0 but fail for :1?

  • [solved]Mobil phone - bluetooth -ppd- doesn't work

    I have problem with my connection via bluetooth.
    I pair my mobil and notebook, it seems to be O.K. then I dial to the net - phone connect a connection is establish, but nothing works, not ping, not web browser. Can you help me where is the problem?
    i use
    >pppd call gprs
    gprs:
    debug
    connect "/usr/sbin/chat -v -f /etc/ppp/gprs"
    noauth
    usepeerdns
    /dev/rfcomm0 115200
    115200
    local
    nocrtscts
    defaultroute
    noipdefault
    lcp-echo-interval 0
    lcp-echo-failure 0
    /etc/ppp/gprs
    TIMEOUT         60
    ECHO            ON
    ABORT           '\nBUSY\r'
    ABORT           '\nERROR\r'
    ABORT           '\nNO ANSWER\r'
    ABORT           '\nNO CARRIER\r'
    ABORT           '\nNO DIALTONE\r'
    ABORT           '\nRINGING\r\n\r\nRINGING\r'
    ''              'ATE1'
    OK              AT+CGDCONT=1,"IP","internet"
    OK              ATD*99***1#
    CONNECT         \d\c
    ppp.log:
    pppd call gprs
    ATE1
    OK
    AT+CGDCONT=1,"IP","internet"
    OK
    ATD*99***1#
    CONNECT
    Serial connection established.
    using channel 1
    Using interface ppp0
    Connect: ppp0 <--> /dev/rfcomm0
    sent [LCP ConfReq id=0x1 <asyncmap 0xa0000> <magic 0xc7eaf41c> <pcomp> <accomp>]
    rcvd [LCP ConfRej id=0x1 <magic 0xc7eaf41c> <pcomp> <accomp>]
    sent [LCP ConfReq id=0x2 <asyncmap 0xa0000>]
    rcvd [LCP ConfAck id=0x2 <asyncmap 0xa0000>]
    rcvd [LCP ConfReq id=0x0 <auth pap> <mru 1500> <asyncmap 0xa0000>]
    No auth is possible
    sent [LCP ConfRej id=0x0 <auth pap>]
    rcvd [LCP ConfReq id=0x1 <mru 1500> <asyncmap 0xa0000>]
    sent [LCP ConfAck id=0x1 <mru 1500> <asyncmap 0xa0000>]
    sent [CCP ConfReq id=0x1 <deflate 15> <deflate(old#) 15>]
    sent [IPCP ConfReq id=0x1 <addr 0.0.0.0> <ms-dns1 0.0.0.0> <ms-dns3 0.0.0.0>]
    rcvd [IPCP ConfReq id=0x0 <addr 10.6.6.6>]
    sent [IPCP ConfAck id=0x0 <addr 10.6.6.6>]
    rcvd [LCP ProtRej id=0x0 80 fd 01 01 00 0c 1a 04 78 00 18 04 78 00]
    Protocol-Reject for 'Compression Control Protocol' (0x80fd) received
    rcvd [IPCP ConfNak id=0x1 <addr 10.176.135.227> <ms-dns1 160.218.10.200> <ms-dns3 160.218.43.200>]
    sent [IPCP ConfReq id=0x2 <addr 10.176.135.227> <ms-dns1 160.218.10.200> <ms-dns3 160.218.43.200>]
    rcvd [IPCP ConfAck id=0x2 <addr 10.176.135.227> <ms-dns1 160.218.10.200> <ms-dns3 160.218.43.200>]
    local  IP address 10.176.135.227
    remote IP address 10.6.6.6
    primary   DNS address 160.218.10.200
    secondary DNS address 160.218.43.200
    Script /etc/ppp/ip-up started (pid 8117)
    Script /etc/ppp/ip-up finished (pid 8117), status = 0x0
    I thing It is the right way but why it doesn't work?
    Last edited by walker.cz (2007-11-20 13:24:38)

    mucknert wrote:What's the output of your ifconfig and route? What's the content of your resolv.conf?
    resolve.conf
    # Generated by dhcpcd for interface eth0
    # search chello.upc.cz
    # nameserver 192.168.1.1
    ifconfig:
    ifconfig
    lo Link encap:Local Loopback
    inet addr:127.0.0.1 Mask:255.0.0.0
    inet6 addr: ::1/128 Scope:Host
    UP LOOPBACK RUNNING MTU:16436 Metric:1
    RX packets:366 errors:0 dropped:0 overruns:0 frame:0
    TX packets:366 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:0
    RX bytes:19366 (18.9 Kb) TX bytes:19366 (18.9 Kb)
    ppp0 Link encap:Point-to-Point Protocol
    inet addr:10.177.143.12 P-t-P:10.6.6.6 Mask:255.255.255.255
    UP POINTOPOINT RUNNING NOARP MULTICAST MTU:1500 Metric:1
    RX packets:3 errors:0 dropped:0 overruns:0 frame:0
    TX packets:4 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:3
    RX bytes:54 (54.0 b) TX bytes:66 (66.0 b)
    route:
    route
    Kernel IP routing table
    Destination Gateway Genmask Flags Metric Ref Use Iface
    10.6.6.6 * 255.255.255.255 UH 0 0 0 ppp0
    default * 0.0.0.0 U 0 0 0

  • [SOLVED] gnome-shell-extension-user-theme doesn't work.

    gnome-tweak-tool shows that I have the gnome-shell-extension-user-theme extension installed and I can turn it on and off, but it has no effect. I still can't choose a theme. The exclamation mark next to the drop down selector is still active when the extension is on. Any idea what might be wrong?
    Last edited by trusktr (2012-04-14 05:09:41)

    trusktr wrote:@alexcortes and @Unia, Is it just me or do things seem a little discombobulated now with both gconf-editor and dconf-editor in the mix? Why not just keep one *-editor? It seems like this and many other little "issues" would be easier to catch with just one *-editor. What's the point of two?
    Well yea I agree, but atm it's not going to happen. Anyway, since GS won't work with Catalyst for now I resorted to DWM and try to avoid all the gconf/dconf stuff. Works quite well

  • [SOLVED] Automount CD or DVD doesn't work (consistently)

    Problem with mounting CD's / DVD's and Device Notifier
    DVD's are not mounted in /media/, and the Device Notifier does not show them.
    CD's (which aren't actually mounted)  I can always access in Dolphin with "AudioCD:/", but Device Notifier rarely pops up (maybe 1 out of 10 times).
    facts:
    - No device listing in /etc/fstab for DVDROM
    - File in /etc/hal/fdi/information/<device>.fdi has bool set to 'true' (and I tried deleting the whole file as well)
    - HAL notices that the CD / DVD is inserted (with lshal -m):
    storage_model_DVDRW___DVR_K17B property storage.removable.media_available = true
    - Tried deleting .KDE4 profile, but that didn't change anything,
    - I've got Ubuntu 10.10 installed on the same hardware, and it mounts / shows everything without problems (conclusion: problem is not hardware-related). Ubuntu doesn't use HAL.
    - SystemSettings -> Removable Devices -> Automount on Attach is enabled (just in case),
    - USB flashdrives and external Hard Disk are mounted and shown by Device Notifier without problem.
    - I do get these errors with cat /var/log/errors.log | grep sr0, but they also appear in the rare event when a CD or DVD is actually mounted and shown by Device Notifier:
    DVD:
    Sep  7 13:55:05 localhost kernel: end_request: I/O error, dev sr0, sector 4096
    Sep  7 13:55:05 localhost kernel: Buffer I/O error on device sr0, logical block 1024
    Sep  7 13:55:05 localhost kernel: Buffer I/O error on device sr0, logical block 1025
    CD: 
    Sep  7 13:58:57 localhost kernel: end_request: I/O error, dev sr0, sector 0
    Sep  7 13:58:57 localhost kernel: Buffer I/O error on device sr0, logical block 0
    Sep  7 13:58:57 localhost kernel: Buffer I/O error on device sr0, logical block 1
    (the CD in this case was actually shown by Device Notifier normally! So these errors don't seem to have anything to do with it)
    I don't think this is HAL - related, so it must be udev, dbus (not likely), or maybe KDE / device notifier.. ?
    How do I troubleshoot this? Any suggestions?
    Using:
    Linux laptop 2.6.35-ARCH #1 SMP PREEMPT Fri Aug 27 17:14:28 CEST 2010 x86_64 Intel(R) Core(TM)2 Duo CPU T7500 @ 2.20GHz GenuineIntel GNU/Linux
    Hal 0.5.14-4
    Dbus 1.2.24-1
    KDE 4.5.1
    Last edited by christopher72 (2010-09-09 22:54:10)

    Problem solved:
    At one time, I was using the [testing] repo.  Removed it from pacman.conf a week ago, because i wanted to get back to the stable packages.  I re-installed all the older versions of the packages that are in core / extra and that pacman warned me about.  Did not get any further warnings after that, so I assumed everything was fine, and the rest of the system was stable and working just fine.  But something must have been broken, see the above.   In other words: I messed up things without knowing about it. :-S
    Today I added [testing] again to check if this would solve my problems, and it did!
    Or... is it just the newer version of udev that is in testing at the moment. :-)  Who knows.
    This leads me to my next question: how can i safely disable [testing] and return to stable packages, without breaking anything?

  • [SOLVED] Power Management in KDE doesn't work

    Hello world :-)
    I just installed Arch and everything works well except for Power Management in KDE. The Power Management settings in System Settings are completely grayed out and provided with following message:
    "Power Management configuration module could not be loaded. The Power Management Service appears not to be running. This can be solved by starting or scheduling it inside Startup and Shutdown."
    However the Power Management service is already running and if I restart it I get the message:
    "KDE Power Management System could not be initialized. The backend reported the following error: No valid Power Management backend plugins are available. A new installation might solve this problem. Please check your system configuration."
    I have this problem since KDE installation, Power Management just never worked. After two days of googling I becoming a little bit desperate :-) Any idea what's wrong here?
    Last edited by HungryMonster (2012-07-21 09:43:34)

    Thanks for your answers!
    arojas wrote:is the upower daemon running?
    Not sure about that. I installed upower but I don't know how to configure it or if any configuration is needed. If I understand official documentation correctly, upower daemon should be started automatically if some application needs it.
    cfr wrote:Are you sure that you installed everything necessary for that to work? Which parts of KDE did you install, for example?
    I have full KDE installation (# pacman -S kde-meta) so problem should be in my Arch installation, no in KDE itself. I have only installed Arch, Xorg, proprietary Nvidia drivers and KDE so far, so there is only small chance I break or messed up something - it's more likely something I didn't install yet or didn't know how to configure.
    Last edited by HungryMonster (2012-07-17 07:52:40)

  • [SOLVED] Installing VLC from Extras doesn't work.

    Hey guys,
    During installation I enabled the pacman repository mirror for my country. Which is hosted by Kangaroot.net
    Just now I tried to install VLC media player. Oddly enough pacman couldn't find a couple of dependency packages on the Kangaroot mirror.
    To fix this I went into /etc/pacman.d/mirrorlist and enabled all the mirrors from Germany. I figured that would fix it.
    Seems that the German mirrors are missing the same packages though. This is pacman's output:
    error: failed retrieving file 'libdvbpsi-0.2.1-1-i686.pkg.tar.xz' from mir.archlinux.fr : Not Found
    error: failed retrieving file 'ffmpeg-20111108-1-i686.pkg.tar.xz' from archlinux.polymorf.fr : Not Found
    error: failed retrieving file 'libupnp-1.6.13-1-i686.pkg.tar.xz' from archlinux.polymorf.fr : Not Found
    error: failed retrieving file 'vlc-1.1.12-3-i686.pkg.tar.xz' from mir.archlinux.fr : Not Found
    When you look up "Archlinux" on the videolan.org website it claims VLC ought to be available in the Extras repository.
    What am I missing?
    Last edited by 20k (2011-11-26 21:26:44)

    Am I right in understanding that because pacman's database was not properly updated it couldn't find the same packages on other mirrors either?
    Yes. Your database was out of date, therefore pacman was looking for things which would no longer exist on any up to date mirror.
    EDIT: If your problem is solved, please edit your thread title to reflect this
    Last edited by b4data (2011-11-23 18:09:41)

  • [Solved]Brightness control doesn`t work anymore

    Hi!
    I`ve made my 3rd update of Arch since installation, and... where previous two succeeded, the third one failed. It messed up my system
    The problem is, i cannot change brightness any more through my function keys (and since i`m using Openbox as my DE, i cannot change it at all ). The brightness now is so low that i can barely see what i am typing. And it is not only in my Arch, it also messed up Windows and everything else: grub, bootup screen where i can select bios properties - everything.  I ran xev and now i see that FN+Right/Left are not detected anymore as brightness keys. It says:
    FocusOut event, serial 32, synthetic NO, window 0x3200001,
    mode NotifyGrab, detail NotifyAncestor
    FocusIn event, serial 32, synthetic NO, window 0x3200001,
    mode NotifyUngrab, detail NotifyAncestor
    KeymapNotify event, serial 32, synthetic NO, window 0x0,
    keys: 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    However, FN + Win + Right/Left are now detected as brightness control function keys
    KeyRelease event, serial 35, synthetic NO, window 0x3200001,
    root 0x13c, subw 0x0, time 521221, (348,-43), root:(1219,884),
    state 0x40, keycode 233 (keysym 0x1008ff02, XF86MonBrightnessUp), same_screen YES,
    XLookupString gives 0 bytes:
    XFilterEvent returns: False
    But pressing them doesn`t work either. I thought that it was xfce4-power-manager problem, but changing to gnome-power-manager didn`t help either.During the update pacman also upgraded kernel to latest version.
    Any ideas?
    P.S. My notebook is Acer Aspire 7720g with Nvidia 8600M GT. I tried solutions from this topic: http://bbs.archlinux.org/viewtopic.php?id=73889 but none worked for me... The problem is that the system is completely unusable at this point, since i barely see anything on the monitor, and that sucks
    Last edited by K0tuk (2009-06-27 08:02:56)

    I can't see what you did in Arch affecting your windows installation at all.  If you try to boot into windows and increase the brightness (since most laptops store the brightness level of the laptop as it was set, on battery, at least my 2 laptops do), does the new brightness level "stick" for all things?  If so, the only issue you have is to re-map the function keys properly, and to configure a script or something to increase/decrease lcd brightness.  You can make a simple script that echoes a value into your /proc/acpi/video/LCD/brightness file (the file path will vary, so it may be under UVGA or so).  If, however, it doesn't increase again, it may very well be a hardware issue, and not a software (since, as I said above, it's highly unlikely that an Arch update has affected Windows in any way).
    Last edited by lswest (2009-06-26 12:28:04)

  • Fresh install of iTunes doesn't work(unknown error -50)

    I just installed iTunes 7.0.2 via the software update and after the agreeing to the software license agreement this happens:
    The iTunes application could not be opened. An unknown error occurred(-50)
    Repairing software permissions didn't solve the problem. Reinstalling doesn't work. Quiting everything else and then try to start it doesn't work either. I then deleted everything that had iTunes in it and reinstalled the app. Still a no go.
    The weird thing is, the other accounts are able to start iTunes and move through the setup process(search for iTunes library, music store), so there is something wrong with my account that doesn't make iTunes run properly.
    How do I get iTunes to run? It's too quiet in here.
    17" Powerbook G4   Mac OS X (10.3.9)  

    When I click on the symbol top left on the sreen, with left mousebutton, a popupmenu shows.
    I select menu > awesome > manual : nothing happens
    I select menu > open terminal : nothing happens
    I tried shortcut keys too....
    Windows + Enter > nothing happens?
    Thx for the help!

  • Crontab doesn't work

    Hi!
    I've got following strings in crontab:
    00 20 * * *  /home/user/script.sh 2>&1 > /dev/null
    0-59 * * * * /bin/date
    However, both of them doesn't work. There's no output in terminal for second string.
    Here's what /var/log/crond.log shows (for "date", for example):
    Dec  4 20:37:01 localhost crond[12029]: FILE /var/spool/cron/user USER user PID 12101 /bin/date
    Dec  4 20:37:01 localhost crond[12102]: mailing cron output for user user /bin/date
    Dec  4 20:37:01 localhost crond[12102]: unable to exec /usr/sbin/sendmail: cron output for user user /bin/date to /dev/null
    As far as I know, sendmail can't cause these problems. In my case, it just won't send e-mail notification about completed job.
    I've also tried to add PATH and SHELL par-rs, but with no success.
    PATH=/usr/bin:/usr/sbin:/bin:/sbin
    SHELL=/bin/sh
    What can cause such problem?
    Last edited by LMW (2010-12-05 05:41:49)

    fukawi2 wrote:
    You can't -- it has it's own virtual terminal, which is what it emails to you if there is any output.
    You could redirect it to say /dev/console (instead of /tmp/test) but that will go to the physical terminal so probably not what you want.
    What is the problem you are trying to solve that you want output to your terminal? (EDIT: that's the point of cron... It runs tasks on a schedule, without the need for you to login)
    Well, I just want it to work as it should. I'd like to see output in my terminal. I suppose I need to install MTA to see output. Is it right?
    Also, scripts still don't work even with output redirection:
    00 20 * * *  /home/user/script.sh > /path/to/outputfile
    Last edited by LMW (2010-12-05 08:41:48)

  • I can't move events from local to icloud sharing. Clicking and dragging doesn't work!

    I need to move all of the labels underneath the 'On My Mac' header to the 'iCloud' header so I can sync through iCloud with my other iOS device. Simply clicking and dragging them doesn't work. How can I solve this?

    YES Terence!  Thank you. Exporting allowed me to move my photos from iPhoto into the Burn Folder on my desktop.   But that doesn't explain why I'm having to go that route now.   Have I done something (accidentally changed some setting) on my computer that will not allow me to just click and drag anymore?   I really liked the convenience of the click and drag option. 
    I don't have the time tonight to export and burn a lot of CD/DVDs.  I'll try that tomorrow and make sure my photos are moving properly.  I also need to export photos to my external hard drive to make sure that route is working. 
    Wouldn't you know that my Apple Care Plan runs out this Wednesday?!  I need to make sure everything is working properly before that expires. 
    Thank you so much for your help.   I really, really appreciate it.

Maybe you are looking for

  • Supplementation language complete, but there's problem when login

    Hi friends, I done following step (my system is ECC 6.0): - In client 000:   + Run Tcode : I18N and add new language key(VI - Vietnamese)   + Run Tcode: SMLT and supplement (menu Language->Special action->Supplementation language(expert) - In client

  • LINK command in a Report Script 9.3.3

    Hello, I would be greatful if someone could help me with one line in a Report Script.  I do not know what I am doing.  We currently have the line below, which has worked well for years. <LINK (<LEV("Account",0) AND NOT <DESCENDANTS("Statistical_Accou

  • My bookmark button is in the wrong location

    Next to the search bar there is an icon for HOME and also a icon for Bookmarks (to show recently used, ect....). Im not sure how, but now this has been moved to the same line as my bookmarks (directly below the search bar, and to the far right of all

  • Basic Security & form printing questions.

    Hi, I am not an Oracle Forms developer yet, just gathering info, but I have 2 probably simple questions for you forms experts out there that maybe you can help me with. Lets say that this new application will have 10 users and I create a main menu wi

  • Multiple address for single vendor using business partner

    Hello folks,           I have a issue,it's all about picking the right address in the payment posting.The Vendors have more than 7 addresses depending on the situation.Vendor Master(XK01) can be given 2 address and we are using Business Partner(BP) f