Icewm: Trying to move taskbar to right

 In IceWM, the taskbar is typically located at the bottom of the screen. If you want to move the taskbar to the right side of the screen, you'll need to modify the IceWM configuration. Here's how you can do it:


1. **Edit the IceWM Configuration File**:

   IceWM's configuration is typically stored in a file called `.icewm/preferences` in your home directory. You can edit it using a text editor. For example:


   ```bash

   nano ~/.icewm/preferences

   ```


2. **Find or Add the TaskBar Configuration**:

   Look for the section that configures the taskbar. If it's not present, you can add it. The lines may look something like this:


   ```plaintext

   TaskBarShowWorkspaces=1

   TaskBarShowShowDesktopButton=1

   TaskBarShowMinimizeButton=1

   TaskBarShowWindowListMenu=1

   TaskBarShowWindowNames=0

   TaskBarShowWindowIcons=1

   TaskBarShowClock=1

   TaskBarShowAPMStatus=1

   TaskBarAtTop=0

   ```


3. **Change `TaskBarAtTop`**:

   To move the taskbar to the right side of the screen, you should set `TaskBarAtTop` to `0`, which means "No." Here's the modified line:


   ```plaintext

   TaskBarAtTop=0

   ```


4. **Save the Configuration File**:

   After making the change, save the configuration file and exit the text editor.


5. **Restart IceWM**:

   You will need to restart IceWM for the changes to take effect. You can usually do this by logging out and then logging back in. Alternatively, you can restart IceWM by pressing `Ctrl + Alt + Backspace`, but be cautious as this will log you out of your session.


After these steps, your taskbar should be on the right side of the screen in IceWM. If you encounter any issues, be sure to double-check your configuration changes and refer to the IceWM documentation or user manual for more details.

Comments

Popular posts from this blog

bad character U+002D '-' in my helm template

GitLab pipeline stopped working with invalid yaml error

How do I add a printer in OpenSUSE which is being shared by a CUPS print server?