Advertisement
Guest User

rc.xml

a guest
Apr 22nd, 2024
28
0
2 days
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.58 KB | None | 0 0
  1.     <applications>
  2.         <!-- Match all Steam and put them in middle monitor centered -->
  3.         <application class="steam*">
  4.           <position force="yes">
  5.             <x>center</x>
  6.             <y>center</y>
  7.             <monitor>2</monitor>
  8.           </position>
  9.           <maximized>false</maximized>
  10.           <focus>no</focus>
  11.         </application>
  12.         <!-- Match main Steam window and maximize it -->
  13.         <application name="steamwebhelper" title="Steam" class="steam">
  14.           <position force="yes">
  15.             <monitor>2</monitor>
  16.           </position>
  17.           <maximized>true</maximized>
  18.           <focus>no</focus>
  19.         </application>
  20.         <!-- Match Steam friends list and put it on far right monitor -->
  21.         <application title="Friends List" class="steam">
  22.           <position force="yes">
  23.             <x>1643</x>
  24.             <y>0</y>
  25.             <monitor>3</monitor>
  26.           </position>
  27.           <size>
  28.             <width>277</width>
  29.             <height>1050</height>
  30.           </size>
  31.           <maximized>false</maximized>
  32.           <focus>no</focus>
  33.         </application>
  34.         <!-- Match discord and put it on right monitor -->
  35.         <application name="discord" class="discord">
  36.           <position force="yes">
  37.             <x>32</x>
  38.             <y>100</y>
  39.             <monitor>3</monitor>
  40.           </position>
  41.           <size>
  42.             <width>1582</width>
  43.             <height>847</height>
  44.           </size>
  45.           <maximized>false</maximized>
  46.           <focus>no</focus>
  47.         </application>
  48.     </applications>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement