Advertisement
Guest User

Untitled

a guest
Aug 28th, 2015
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.67 KB | None | 0 0
  1.  
  2.  
  3. Ubuntu
  4.  
  5. Community
  6.  
  7. Ask!
  8.  
  9. Developer
  10.  
  11. Design
  12.  
  13. Discourse
  14.  
  15. Hardware
  16.  
  17. Insights
  18.  
  19. Juju
  20.  
  21. Shop
  22.  
  23. More ›
  24.  
  25. Stack Exchange
  26.  
  27. sign up log in tour help
  28.  
  29.  
  30.  
  31. Ask Ubuntu
  32.  
  33.  
  34.  
  35. Questions
  36.  
  37. Tags
  38.  
  39. Users
  40.  
  41. Badges
  42.  
  43. Unanswered
  44.  
  45. Ask Question
  46.  
  47.  
  48.  
  49. Take the 2-minute tour×
  50.  
  51. Ask Ubuntu is a question and answer site for Ubuntu users and developers. It's 100% free.
  52.  
  53. Resetting XFCE Panels to default settings?
  54.  
  55. up vote
  56.  
  57. 23
  58.  
  59. down vote
  60.  
  61. favorite
  62.  
  63. 15
  64.  
  65. How do I reset my XFCE panels to the default settings that xubuntu uses?
  66.  
  67. xubuntu xfce-panel
  68.  
  69. share|improve this question
  70.  
  71. asked Nov 30 '12 at 20:38
  72.  
  73.  
  74.  
  75. Evan Carroll
  76. 1,65741429
  77.  
  78. add a comment
  79.  
  80.  
  81.  
  82. 2 Answers
  83.  
  84. active
  85.  
  86. oldest
  87.  
  88. votes
  89.  
  90. up vote
  91.  
  92. 34
  93.  
  94. down vote
  95.  
  96. accepted
  97.  
  98. XFCE stores it's configuration for the running session in xfconfd. Feel free to back up the files you're going to delete first.
  99.  
  100. 1. Shut down the panel first, xfce4-panel --quit
  101. 2. Kill the xfce4 configuration daemon, pkill xfconfd
  102. 3. First delete settings for the panel, rm -rf ~/.config/xfce4/panel
  103. 4. Clear out the settings for xfconfd, rm -rf ~/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml
  104. 5. Restart the panel, run xfce4-panel. This will respawn xfconfd automatically. Note if you need or want to restart xfconfd manually know that on my installation it was in /usr/lib/x86_64-linux-gnu/xfce4/xfconf/xfconfd which was outside of $PATH.
  105.  
  106. This clears it for the running session, regenerates the files, and sets up the default for future sessions.
  107.  
  108. Want it in one line?
  109.  
  110. xfce4-panel --quit ; pkill xfconfd ; rm -rf ~/.config/xfce4/panel ~/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml ; xfce4-panel;
  111.  
  112. share|improve this answer
  113.  
  114. edited Nov 16 '14 at 21:20
  115.  
  116.  
  117.  
  118. Seth♦
  119. 17.2k1670116
  120.  
  121. answered Nov 30 '12 at 21:43
  122.  
  123.  
  124.  
  125. Evan Carroll
  126. 1,65741429
  127.  
  128. 2  
  129.  
  130. I suggest using the mv command or at least suggesting to copy the folder elsewhere before deleting anything. –  Mateo Nov 30 '12 at 22:05
  131.  
  132.     
  133.  
  134. I wouldn't suggest that. This is a simple reset to defaults. In no paradigm does a Reset to Defaults → Apply provide for an Undo. I take it the users understand this, as I could not think of anything that would lead them to expect anything else. –  Evan Carroll Nov 30 '12 at 23:14
  135.  
  136. 1  
  137.  
  138. except that using rm -rf can be dangerous if you miss-type, If you accidentally move something else, you can simply move it back. –  Mateo Nov 30 '12 at 23:51
  139.  
  140. 1  
  141.  
  142. THANK YOU! my panel disappeared and I was having trouble finding a way to restore it with my old (backed up) settings without logging out, this worked! –  weronika Dec 20 '12 at 5:22
  143.  
  144. 1  
  145.  
  146. @EvanCarroll I did back when I made that comment - apparently it got some downvotes as well. –  weronika Mar 26 '13 at 21:04
  147.  
  148. show 2 more comments
  149.  
  150.  
  151.  
  152. up vote
  153.  
  154. 1
  155.  
  156. down vote
  157.  
  158. The only thing I can say that would make it easier to just run:
  159.  
  160. rm -r ~/.config/xfce4
  161.  
  162. Then simply log out and back in. This will just reset xfce4 back to default. I'd recommend avoiding the -f flag unless necessary especially if you are using the sudo command which is not an issue here but anyway. Using only the minimal force necessary is always a good idea.
  163.  
  164. This also limits the commands a user has to enter, you can also open up your file manager and select view hidden files and go into the .config folder and right click and delete the xfce4 folder and then log out and back in. No commands necessary.
  165.  
  166. share|improve this answer
  167.  
  168. edited Nov 11 '13 at 20:49
  169.  
  170.  
  171.  
  172. Wolfer
  173. 905318
  174.  
  175. answered Nov 4 '13 at 8:03
  176.  
  177.  
  178.  
  179. Primefalcon
  180. 821
  181.  
  182.     
  183.  
  184. You could just as easily do it in one line, pkill xfconfd; rm -rf ~/.config/xfce4/panel ~/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml; xfec4-panel, which would stop you from having to logout, and not nuke other potentially useful settings in ~/.config/xfce4. –  Evan Carroll Dec 23 '13 at 18:18
  185.  
  186. add a comment
  187.  
  188. protected by Community♦ Jan 22 '14 at 1:23
  189.  
  190. Thank you for your interest in this question. Because it has attracted low-quality answers, posting an answer now requires 10 reputation on this site.
  191.  
  192. Would you like to answer one of these unanswered questions instead?
  193.  
  194. Not the answer you're looking for? Browse other questions tagged xubuntu xfce-panelor ask your own question.
  195.  
  196. asked
  197.  
  198. 2 years ago
  199.  
  200. viewed
  201.  
  202. 54425 times
  203.  
  204. active
  205.  
  206. 9 months ago
  207.  
  208. Linked
  209.  
  210.  
  211.  
  212. 4 Xfce top panel indicator problem
  213.  
  214.  
  215.  
  216. 1 xubuntu no workspaces
  217.  
  218.  
  219.  
  220. 2 How to get the 'normal' Xubuntu/Xfce panel indicator?
  221.  
  222.  
  223.  
  224. 2 Xubuntu 14.04: Missing Settings Apps in Whisker Menu
  225.  
  226.  
  227.  
  228. 1 Broken panel icons in Xubuntu 12.10
  229.  
  230.  
  231.  
  232. 0 How to get Xubuntu Panel back to original state
  233.  
  234.  
  235.  
  236. 0 missing icons in Whisker Menu
  237.  
  238.  
  239.  
  240. 0 Xubuntu panel filling screen!
  241.  
  242. Related
  243.  
  244. 4 Running Xubuntu without panels
  245.  
  246. 3 Lost panel transparency and gain 2 more workspaces after installing tight vnc server
  247.  
  248. 6 Fix order of window buttons in xfce panel
  249.  
  250. 2 Rotating text on a vertical Xfce panel
  251.  
  252. 1 Giving XFCE panel's decimal percentage heights?
  253.  
  254. 0 How do I add the messaging menu to the xfce-panel 4.10?
  255.  
  256. 4 Xfce top panel indicator problem
  257.  
  258. 0 Xubuntu panel filling screen!
  259.  
  260. 0 Resetting XFCE Panels to default settings? xubuntu 12.04 x64
  261.  
  262. 1 xfce-panel display list of windows of a single application?
  263.  
  264. Hot Network Questions
  265.  
  266. Does the clock rate varies with the need?
  267. Stop, stand there where you are!
  268. What's the reason for having a large number of guitars?
  269. How do you update a minor mode definition as you develop it?
  270. Can a radio transmitter somehow detect the number of receivers in its area? more hot questions
  271.  
  272. question feed
  273.  
  274. tour help blog chat data legal privacy policy work here advertising info mobile contact us feedback
  275.  
  276. TECHNOLOGY LIFE / ARTS CULTURE / RECREATION SCIENCE OTHER
  277.  
  278. Stack Overflow
  279. Server Fault
  280. Super User
  281. Web Applications
  282. Ask Ubuntu
  283. Webmasters
  284. Game Development
  285. TeX - LaTeX
  286.  
  287. Programmers
  288. Unix & Linux
  289. Ask Different (Apple)
  290. WordPress Development
  291. Geographic Information Systems
  292. Electrical Engineering
  293. Android Enthusiasts
  294. Information Security
  295.  
  296. Database Administrators
  297. Drupal Answers
  298. SharePoint
  299. User Experience
  300. Mathematica
  301. Salesforce
  302. ExpressionEngine® Answers
  303. more (13)
  304.  
  305. Photography
  306. Science Fiction & Fantasy
  307. Graphic Design
  308. Movies & TV
  309. Seasoned Advice (cooking)
  310. Home Improvement
  311. Personal Finance & Money
  312. Academia
  313. more (9)
  314.  
  315. English Language & Usage
  316. Skeptics
  317. Mi Yodeya (Judaism)
  318. Travel
  319. Christianity
  320. Arqade (gaming)
  321. Bicycles
  322. Role-playing Games
  323. more (21)
  324.  
  325. Mathematics
  326. Cross Validated (stats)
  327. Theoretical Computer Science
  328. Physics
  329. MathOverflow
  330. Chemistry
  331. Biology
  332. more (5)
  333.  
  334. Stack Apps
  335. Meta Stack Exchange
  336. Area 51
  337. Stack Overflow Careers
  338.  
  339. site design / logo © 2015 Stack Exchange Inc; user contributions licensed under cc by-sa 3.0 with attribution required
  340.  
  341. rev 2015.8.27.703
  342.  
  343. Ubuntu and Canonical are registered trademarks of Canonical Ltd.
  344.  
  345. Ask Ubuntu works best with JavaScript enabled
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement