Question about Blender 2.46 package...where is "~/.blender" directory?

Hi, I installed Blender 2.46.
And I tried to customize of theme of the Blender.
I would like to use my original theme setting that used in Blender 2.45.
But, I can not find the directory "~/.blender".
On Zenwalk Linux, Blender 2.46 has ~/.blender directory.
Humm, I don't know what is wrong.
regards.

koro wrote:Hi, I installed Blender 2.46.
And I tried to customize of theme of the Blender.
I would like to use my original theme setting that used in Blender 2.45.
As the two versions have different default preferences if you didn't want to copy them, you could have used the File>Export>Save Current Theme... and run the theme script in a fresh blend file.
koro wrote:But, how about the icon theme?
In Blender 2.45, put the icon directory that contains the icon image file(PNG) into ~/.blender directory.
The Icons file should be placed in ~/.blender/icons/ (you'll need to create the directory).

Similar Messages

  • [SOLVED] Two Questions about b43-firmware AUR Package

    Hi. On my old laptop, my wifi adapter worked out-of-the-box / no extra driver installation required. On my new laptop I have the Broadcom BCM43228 wi-fi adapter. Up to this point I have just been using the proprietary broadcom-wl driver, which has worked fine but it has been annoying having to rebuild (that is: install latest linux-headers, run makepkg) and reinstall broadcom-wl every time the linux kernel is upgraded. I discovered that the open-source b43 firmware recently added support for the chip. So I have two questions...
    1. With b43, would I still need to rebuild/reinstall the package every time the kernel is upgraded?
    2. Is there any way to know if the linux kernel will integrate b43 some day? Is this something that happens? I'm assuming it must be because I didn't have to install anything extra to use the wi-fi adapter on my old laptop. Maybe there's some schedule online of when the linux kernel developers intend to integrate open-source drivers/firmware directly into the kernel?
    Thanks!
    Last edited by tony5429 (2015-03-02 23:25:58)

    tony5429 wrote:I discovered that the open-source b43 firmware recently added support for the chip.
    It's not firmware that added support, it's the driver.
    driver = code that runs in the kernel
    firmware = code that runs on the device itself
    tony5429 wrote:1. With b43, would I still need to rebuild/reinstall the package every time the kernel is upgraded?
    Nope, the firmware isn't tied to a particular kernel.
    tony5429 wrote:2. Is there any way to know if the linux kernel will integrate b43 some day?
    The kernel does have b43 integrated. What the package installs isn't the driver, it's the firmware that gets uploaded onto the wifi card.
    A lot of firmware is distributed in the linux-firmware package. However this requires that the firmware is released under a license that allows redistribution. But the b43 firmware isn't redistributable, that's why you need to get it from AUR.
    Last edited by Gusar (2015-02-08 21:22:33)

  • Questions about HBO & Showtime channel package

    Does Verizon have any current specials if ordering the HBO & Showtime package?  Also, how long does it take to get those channels once you order them?

    Don't know if they have any specials.  Once ordered they are usually activated witin a few hours but can take up to 48 hours.
    If a forum member gives an answer you like, give them the Kudos they deserve. If a member gives you the answer to your question, mark the answer as Accepted Solution so others can see the solution to the problem.

  • Question about Lightroom/Photoshop CC Package

    This is the third time I've typed this.  I hope this is the last!  Basically I've been advised to subscribe to the Lightroom/Photoshop package as an individual. The website tells me the cost and I can see the forums (fora?), video tutorials and the like.  What I can't see is a definitive list of what I get for my money - support, guidance materials, length of contract and the like. I also can't see whether downloading the apps will take space on my computer (and if so, how much) or whether it's all cloud based. Surely somewhere there is a link to such a list of basic information?  If so, can someone please direct me to it?  Many thanks.

    You get Photoshop and Lightroom and they install on your machine. See the system specs for the ballpark space requirements.  You say you have already seen the forums, video tutorials, and the like.  The length of the contract depends on which contract you choose.  I don't know what "and the like" refers to as far as what else you cannot see.
    Photoshop - http://helpx.adobe.com/photoshop/system-requirements.html
    Lightroom - https://helpx.adobe.com/lightroom/system-requirements.html
    Creative Cloud Plans
    https://creative.adobe.com/plans
    If you need more information, more specific questions will be helpful.
    Creative Cloud Learn & Support
    http://helpx.adobe.com/creative-cloud.html
    Creative Cloud / Common Questions
    http://helpx.adobe.com/creative-cloud/faq.html

  • [SOLVED] Some questions about a recently submited package (cgames)

    Hi there, when searching for ncurses sokoban-like games I ended up finding a great one that wasn't at the AUR yet. I submitted it (the package is named cgames) but I have some questions.
    1- The source code provided by the developer has 3 games. Should I have packaged each one individually? I decided this way because they are so small that I figure nobody would have a problem in having them all even when just wanting to play one of them (you can always change the make command in the PKGBUILD if you want a single game).
    2 - The original package had some compiling problems due to a function called getline (already existing in stdio.h) and I solved this problem with a sed command. Is this the proper way to do it? Should I have created some patch file or something?
    3- I'm 99% sure the game works in 64bit archs, but 99 isn't 100. Can anyone try it out for me, so that I change the PKGBUILD? I know I should have tested it but I don't have the time to install a 64b arch in the next few days.
    Thank you in advance
    Last edited by jlcordeiro (2010-03-29 15:33:58)

    Yeap, a bit
    Anyway, all done (i think)
    Second release:
    - Replaced sed command with a patch
    - Added x64 arch
    - Fixed a little bug with the configure command
    Last edited by jlcordeiro (2010-03-29 15:32:42)

  • Question about servlet in a package

    hello
    i use tomcat4.0,and write a simple servlet "Hello.java",put it in "C:\jakarta-tomcat-4.0\webapps\ee\WEB-INF\classes",i input "http://127.0.0.1:8080/ee/servlet/Hello",the code works well,but after i add a package declaration "package hi;" in front of my servlet,and put it in "C:\jakarta-tomcat-4.0\webapps\ee\WEB-INF\classes\hi\",wheather i input "http://127.0.0.1:8080/ee/hi/servlet/Hello" or "http://127.0.0.1:8080/ee/servlet/hi/Hello",both of them don't work,why?and how can i call a servlet that is in a package from the browser? thanks!
    my code:
    package hi;
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    public class Hello extends HttpServlet{
         public void service(HttpServletRequest req,
              HttpServletResponse resp)
              throws IOException,
                   ServletException{
              resp.setContentType("text/html");
              PrintWriter out=new PrintWriter(resp.getOutputStream());
              out.print("<html>");
              out.print("<body>");
              out.print("hello world!");
              out.print("</body>");
              out.print("</html>");
              out.close();

    Hi,
    Open your ee/web-inf/web.xml file and add these lines.
    <servlet>
    <servlet-name>
    Hello
    </servlet-name>
    <servlet-class>
    hi.Hello
    </servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>
    Hello
    </servlet-name>
    <url-pattern>
    /Hello
    </url-pattern>
    </servlet-mapping>
    Start the tomcat and give the URL,
    http://127.0.0.1:8080/ee/servlet/Hello
    Hope this helps.
    If you don't have a web.xml file there, you can add these lines in your Tomcat\conf\web.xml file.
    Sudha

  • Question about cookies in OWA package and JSP

    Hi all!!
    Can I get in a JSP page a cookie set in a PL/SQL procedure?
    I set a cookie in a PL/SQL procedure (Using the OWA package).
    Later (a few pages forward), I try to get it using
    HttpServletRequest.getCookies in a JSP page.
    When I see the list of cookies, my cookie is not there!
    How can I achieve this?? is this possible??
    Thanks!

    Hi,
    Open your ee/web-inf/web.xml file and add these lines.
    <servlet>
    <servlet-name>
    Hello
    </servlet-name>
    <servlet-class>
    hi.Hello
    </servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>
    Hello
    </servlet-name>
    <url-pattern>
    /Hello
    </url-pattern>
    </servlet-mapping>
    Start the tomcat and give the URL,
    http://127.0.0.1:8080/ee/servlet/Hello
    Hope this helps.
    If you don't have a web.xml file there, you can add these lines in your Tomcat\conf\web.xml file.
    Sudha

  • Question about distribution of binary packages..

    Hi!!
    When I have built a package with makepkg, is that all that is needed to later share that pkg-file for the public? (i have no specifik optimizations)

    Yes.
    If you wan to create a repo, you'll need to use gensync to generate the database: http://wiki2.archlinux.org/index.php/Cu … %20gensync

  • Question about Photoshop Elements, not sure where else to post at.

    I am looking to be able to add layers and do some fun type editing for photos to use as backgrounds and media shows. I'm new to this. I am planning to add Photoshop Elements and was just curious if it does enough different stuff from iPhoto 11 to make it worth it as well as enough to avoid purchasing the bigger more expensive Photoshop programs. I am also wondering where to get good tutorials on learning to use it, if so. Any help? Thanks.

    PhotoShop Elements will do what you want, and is a good complement to iPhoto. For learning it, I suggest Barbara Brundage's excellent Missing Manual for PhotoShop Elements (Macintosh).
    http://oreilly.com/catalog/9780596804961
    Adobe also has lots of tutorials on their website.

  • The dark mod won't start/question about rebuilding an AUR package.

    Hi...just migrated from Debian so i would be forced to learn some new things (and to tweak my system to meet my needs:P), and till now everything has worked flawlessly..today i encountered my first opportunity.
    Just installed The Dark Mod and it won't start.
    I got this error:
    dlopen '/home/case/.doom3/darkmod/gamex86.so' failed: libjpeg.so.62: cannot open shared object file: No such file or directory.
    Surfed the forums and the solutions were to rebuild the package (wich i still have to learn) or make a symlink (wich was not recomended)...the solutions were appointed in similar cases, with the same error but to other software.
    I'm using libjpeg-turbo 1.1.0-1 and Doom3 runs like a charm...The mod won't...so i'm a litle confused.
    The PKGBUILD of the mod does not mention this particular library since the only dependance that is written in the PKGBUILD is Doom 3...
    So what i'm asking is how do i build it again to make it work with my libjpeg library?wich file do i have to modify?
    Can someone point me in the right direction?
    Thanks.

    From AUR: https://aur.archlinux.org/packages.php?ID=31788. i intalled it with that PKGBUILD...at first i thought that with a slight modification of it i could make the mod work..but the PKGBUILD does not refer to that particular library.
    (...Doom3's engine also comes from the AUR)
    Sorry..i mentioned AUR in the title and then forgot to write the mod came from there...
    What is bothering me is that Doom3 runs with my lib and TDM won't, it tries to open  libjpeg.so.62 wich is an old library.
    Last edited by coeurdechene (2011-03-10 03:43:39)

  • Info about the linux-firmware package and rt2780-usb-fw

    Hello,
    I have a have question about the linux-firmware package in the repo.
    Recently there was an update for this package and when I checked its contents I saw that it also updates rt2870usb-fw.
    Maybe I am a bit confused about the all kernel modules / firmware, but since I need to compile the latest kernel (linux-mainline from AUR) to get my buffalo wireless usb work(my rt2870 is supported from rc4), would it be possible to update only this package and use the kernel in the arch repo?
    I can't test it myself because I am out of town for while.
    Thank you

    Hello,
    I have a have question about the linux-firmware package in the repo.
    Recently there was an update for this package and when I checked its contents I saw that it also updates rt2870usb-fw.
    Maybe I am a bit confused about the all kernel modules / firmware, but since I need to compile the latest kernel (linux-mainline from AUR) to get my buffalo wireless usb work(my rt2870 is supported from rc4), would it be possible to update only this package and use the kernel in the arch repo?
    I can't test it myself because I am out of town for while.
    Thank you

  • Question about DateChooser

    <mx:DateChooser id="dtReport" showToday="true"
    yearNavigationEnabled="true" initialize="initDC()"
    change="gochage(event)" />
    <mx:Script>
    <![CDATA[
    private function
    viewDayReport(eventObj:CalendarLayoutChangeEvent):void{
    Alert.show(eventObj.newDate.toString());
    Alert.show(eventObj.currentTarget.selectedDate.toString());
    ]]>
    </mx:Script>
    ===========
    when i click the same date in DateChooser , an error throwed
    "#1009:cannot access a property or method of a null object
    reference..."
    seems eventObj.newDate. is right ,
    eventObj.currentTarget.selectedDate is wrong?
    Thx a lot!

    HI, a question about he toedter JCalendar package.So why do you ask here?
    I have a dateChooser object on my form, but I need to
    do something everytime the date changes. What is the
    best way to implement an onDateChange() method? Is
    there a way of doing this easily?Probably by adding some listener. Would depend on the API which i don't know.

  • Question about blending

    I have an unusual question about blending
    Say you have two objects using a blend mode other than normal. For example, two boxes, one yellow, one magenta, both set to multiply.
    Where they overlap is red.
    Is there a way to keep this area red when the two boxes are placed on top of other objects? But still let the two boxes multiply over other objects, outside of the red overlap area. In other words, making only the red area opaque.
    I know the result can be achieved by adding a box, or using the pathfinder, I was just wondering if there was a setting in the transparency pallet that would allow this.

    Thanks for your help but I wasn't clear. My question doesn't concern blends, just transparency blend modes
    Maybe the PDF will explain. Magenta and yellow boxes are on top, with multiply. Normally where they intersect with the cyan would be a muddy brown. I want what you see on page 1
    So what I want is to leave the cyan out of the transparency interaction. The only way I know to do this is punch a hole in the cyan, or something like that. The problem with this is evident on page 2 - when you move around the magenta and yellow, the red stays put
    Isn't there a way to limit how far transparency goes down in a stack of objects? In this case, just allowing transparency to dig down 2 objects would keep the red intersect area.
    If you group the yellow and magenta, then enable isolate blending, you get the red. But the green and blue overlap goes away.

  • Basic question regarding SSIS 2010 Package where source is Microsoft Excel 97-2005 and there is no Microsoft office or Excel driver installed in Production

    Hi all,
    I got one basic question regarding SSIS 2010 Package where source is Microsoft Excel 97-2005. I wanted to know How this package works in production where there is no Microsoft office or Excel driver installed. To check that there is excel driver installed
    or not, I followed steps: Start-->Administrative Tools--> Data Sources(ODBC)-->Drivers and I found only 2 drivers one is SQL Server and another one is SQL Server Native Client 11.0.
    Windows edition is Windows Server 2008 R2 Enterprise, Service Pack-1 and System type is 64-bit Operating System.
    We are running this package from SQL Server Agent and using 32-bit (\\Machine_Name\d$\Program Files (x86)\Microsoft SQL Server\110\DTS\Binn\DTExec.exe /FILE "\\Machine_Name\d$\ Folder_Name\EtL.dtsx" /CONFIGFILE "\\Machine_Name\d$\Folder_Name\Config.dtsConfig"
    /MAXCONCURRENT " -1 " /CHECKPOINTING OFF /REPORTING E) to run this package. I opened the package and tried to find out what connection we have used and found that we have used "Excel Connection Manager" and ConnectionString=Provider=Microsoft.Jet.OLEDB.4.0;Data
    Source=F:\Fares.xls;Extended Properties="EXCEL 8.0;HDR=YES"; and source is ‘Excel Source’
    I discussed with my DBA and He said that SSIS is having inbuilt Excel driver but I am not convinced.
    Could anyone please clear my confusion/doubt?
    I have gone through various links but my doubt is still not clear.
    Quick Reference:
    SSIS in 32- and 64-bits
    http://toddmcdermid.blogspot.com.au/2009/10/quick-reference-ssis-in-32-and-64-bits.html
    Why do I get "product level is insufficient..." error when I run my SSIS package?
    http://blogs.msdn.com/b/michen/archive/2006/11/11/ssis-product-level-is-insufficient.aspx
    How to run SSIS Packages using 32-bit drivers on 64-bit machine
    http://help.pragmaticworks.com/dtsxchange/scr/FAQ%20-%20How%20to%20run%20SSIS%20Packages%20using%2032bit%20drivers%20on%2064bit%20machine.htm
    Troubleshooting OLE DB Provider Microsoft.ACE.OLEDB.12.0 is not registered Error when importing data from an Excel 2007 file to SQL Server 2008
    http://www.mytechmantra.com/LearnSQLServer/Troubleshoot_OLE_DB_Provider_Error_P1.html
    How Can I Get a List of the ODBC Drivers that are Installed on a Computer?
    http://blogs.technet.com/b/heyscriptingguy/archive/2005/07/07/how-can-i-get-a-list-of-the-odbc-drivers-that-are-installed-on-a-computer.aspx
    Thanks Shiven:) If Answer is Helpful, Please Vote

    Hi S Kumar Dubey,
    In SSIS, the Excel Source and Excel Destination natively use the Microsoft Jet 4.0 OLE DB Provider which is installed by SQL Server. The Microsoft Jet 4.0 OLE DB Provider deals with .xls files created by Excel 97-2003. To deal with .xlsx files created by
    Excel 2007, we need the Microsoft ACE OLEDB Provider. SQL Server doesn’t install the Microsoft ACE OLEDB Provider, to get it we can install the
    2007 Office System Driver: Data Connectivity Components or
    Microsoft Access Database Engine 2010 Redistributable or Microsoft Office suit.
    The drivers listed in the ODBC Data Source Administrator are ODBC drivers not OLEDB drivers, therefore, the Excel Source/Destination in SSIS won’t use the ODBC driver for Excel listed in it by default. On a 64-bit Windows platform, there are two versions
    of ODBC Data Source Administrator. The 64-bit ODBC Data Source Administrator is C:\Windows\System32\odbcad32.exe, while the 32-bit one is C:\Windows\SysWOW64\odbcad32.exe. The original 32-bit and 64-bit ODBC drivers are installed by the Windows operating system.
    By default, there are multiple 32-bit ODBC drivers and fewer 64-bit ODBC drivers installed on a 64-bit platform. To get more ODBC drivers, we can install the 2007 Office System Driver: Data Connectivity Components or Microsoft Access Database Engine 2010 Redistributable.
    Besides, please note that 2007 Office System Driver: Data Connectivity Components only install 32-bit ODBC and OLEDB drivers because it only has 32-bit version, but the Microsoft Access Database Engine 2010 Redistributable has both 32- bit version and 64-bit
    version.
    If you have any questions, please feel free to ask.
    Regards,
    Mike Yin
    TechNet Community Support

  • A question about creating packages as local objects in ABAP

    Hi,
    I have a question about creating packages with SE80. Whenever I create a new package it is assigned a new transport request. After that, I can create new programs inside this package, and each time I can choose whether to assign the new program to a transport request or just save it as a local object (I often do this for test programs that I don't transport and I remove them once my tests have been done).
    What I would like to ask is that, is it possible to create a package (and not just programs inside a given package) as a local object? so that every new object created in this package will be considered as a local object?
    Thanks in advane,
    Kind Regards,
    Dariyoosh

    Thomas Zloch wrote:
    Please also check the F1 help for the package field e.g. in SE80, SAP standard is in range A-S and U-X, namespaces start with "/", so you should be save. I am using the T namespace for temporary stuff since a long time and did not have a problem so far.
    > Thomas
    >
    > P.S. this applies to the package name only, of course
    Thank you very much for this remark, I checked F1 help for the package field and in fact as you mentioned these ranges are for local objects.
    Once again, thank you very much for your help.
    Kind Regards,
    Dariyoosh

  • Where can I get my questions about JMX answered?

    Where can I get my questions about JMX answered?
    In the Jungle Mix of the World Wild Web, where are the dwellings of the JMX denizens?
    It recently came to my attention that the answer to that simple question may not be obvious...
    I hope the information provided there
    [ http://blogs.sun.com/roller/page/jmxetc#where_can_i_get_my ] will be helpful.
    Cheers,
    -- daniel

    See this page
    http://java.sun.com/products/JavaManagement/community/forum.html
    Bye for now
    CSJakharia

Maybe you are looking for