You are not logged in.
Pages: 1
I am running xfce 4.12 desktop and actively using keyboard to reposition my windows. Unfortunately, this is one of xfce weakest spots since in comparison to openbox it either hides or does not have the same amount of window moving functions. Since on my other machine I use openbox and `Win-c` keybind to center the window I wanted the same functionality in xfce alas could not find it via settings manager. So, how can I center a window in xfce via keyboard?
Last edited by tastyminerals (2017-04-19 10:22:13)
Offline
Hello and welcome.
You can use a script like this (requires xdotool):
#!/bin/bash
IFS='x' read screenWidth screenHeight < <(xdpyinfo | grep dimensions | grep -o '[0-9x]*' | head -n1)
width=$(xdotool getactivewindow getwindowgeometry --shell | head -4 | tail -1 | sed 's/[^0-9]*//')
height=$(xdotool getactivewindow getwindowgeometry --shell | head -5 | tail -1 | sed 's/[^0-9]*//')
newPosX=$((screenWidth/2-width/2))
newPosY=$((screenHeight/2-height/2))
xdotool getactivewindow windowmove "$newPosX" "$newPosY"
...save it somewhere (/usr/local/bin if you want all users to access it), make it executable and assign it to a keyboard shortcut. It will centre the currently active window.
Mark solved threads as [SOLVED] to make it easier for others to find solutions.
--- How To Ask For Help | FAQ | Developer Wiki | Community | Contribute ---
Offline
I see. Thank you for the solution.
Offline
Found this thread searching 'how to center a window?'.
Here's the above Bash script converted into a function you can add to your .bashrc:
# Center active window in XFCE
# https://forum.xfce.org/viewtopic.php?id=11558
center_active_window() {
local screen_info=$(xdpyinfo | grep dimensions | grep -o '[0-9x]*' | head -n1)
IFS='x' read screenWidth screenHeight <<< "$screen_info"
local geometry=$(xdotool getactivewindow getwindowgeometry --shell)
local width=$(echo "$geometry" | head -4 | tail -1 | sed 's/[^0-9]*//')
local height=$(echo "$geometry" | head -5 | tail -1 | sed 's/[^0-9]*//')
local newPosX=$((screenWidth/2-width/2))
local newPosY=$((screenHeight/2-height/2))
xdotool getactivewindow windowmove "$newPosX" "$newPosY"
}
To create a keyboard shortcut in XFCE:
xfce4-keyboard-settings
Add a new shortcut with the following command:
bash -ic center_active_window
Then click OK and assign a key combination, for example, "Ctrl+Alt+C".
Apologies for reviving this old thread, but I wanted to share this in case it helps others
Offline
You can have Xfce4 do this automatically via Settings>>Window Manager Tweaks>>Placement>>By Default, Place Windows at center of the screen.
I AM CANADIAN!
Siduction
Debian Sid
Xfce 4.20 with Wayland/Labwc
Offline
Pages: 1
[ Generated in 0.011 seconds, 7 queries executed - Memory usage: 536.41 KiB (Peak: 537.25 KiB) ]