Xfceでウィンドウのサイズ変更を簡単にするにはどうすればよいですか?


27

Xfce 4.10をxfwm4ウィンドウマネージャーとして使用しています。境界線をつかんでウィンドウのサイズを変更するのは難しいと感じています。マウスカーソルが「ウィンドウのサイズ変更」カーソルに変わる領域は、幅が1ピクセルまたは2ピクセルしかないようです。

その領域を少し広くするにはどうすればよいですか?ウィンドウの境界線の外観を変更したくないので、ヒットターゲットを少し広くします。(ウィンドウメニューの[サイズ変更]オプションについては知っていますが、ウィンドウのサイズを1次元だけに変更することはできません。)ウィンドウマネージャーの設定と調整を確認しましたが、その設定は表示されません。適用するようです。


1
質問が残っています:カーソルがエッジをつかむウィンドウのエッジ近くのターゲットゾーンの幅を変更する方法は?
HiTechHiTouch

回答:


25

非常に簡単です。Alt+右クリック+ドラッグを使用できます。


2
グラブバーの幅の問題に対処しない技術的に正しい答え。そのため、ウィンドウデザイナーがグラブを十分に大きくできなかったため、GUI レイアウトの問題が発生しました。優れたGUIプリンシパルは、マウスアクションがグラブバー上で変更を示すさまざまなアクティブエリアを通過するときに、カーソル/マウステキストの変更を使用し、ALTなどの修飾キーを使用しないようにします。GUIの観点からは、アクティブエリアに変更されたカーソルを表示するのに適したソリューションで十分です。初心者ユーザーは、修飾子と代替クリックを知っている必要はありません。
HiTechHiTouch

1
「非常に簡単」に依存します。タッチパッド付きのノートブックでこれを試してみてください...
karatedog

12

どうやらこの問題は長年にわたって発生しており、1つのバグレポートが「修正されない」という理由でクローズされています。この問題は、バグ11808 -Xfwm:ウィンドウのサイズ変更の境界線を大きくすることで再開されました。

グラブ領域の幅はテーマによって制御されます。別の回避策は、一緒に暮らすことができるものが見つかるまで、さまざまなテーマを試すことです。1人の開発者がコメントしています:

これはテーマ自体にコード化されており、少なくともMX-15の開発中にわかったことです。greybird(またはbluebird)とDebianベースのディストリビューションを使用している場合は、mx-greybird-themesパッケージを見ることができます。ここでは、試行錯誤について多くのテスターのフィードバックを受けて、境界線を3ピクセルに拡大しました。それをつかむために。(他の外観の問題を修正するStretchバージョンを含むように、BTWを更新しようとしています。)

テーマがボーダーをどのように設定するかについてのブログエントリはこちらです。

別の投稿では、テーマの定義を変更することを提案しています(実際、このファイルは定義の一部ではなく、ウィンドウマネージャーです)。 ~/.gtkrc-2.0

style "default-style"
{
        GtkWindow::resize-grip-height = 4
        GtkWindow::resize-grip-width = 4
}
class "GtkWidget" style "default-style"

グリップ領域が小さくなります。その数を増やすと、グリップ領域が大きくなります。設定を有効にするには、テーマをリロードする必要があります。

私は個人的にテーマの定義を変更しようとしませんでしたが、これは良い出発点のように見えます。


追加するために編集:

別のアプローチには、Compizのインストールと構成含まれます(基本パッケージは、最近のディストリビューションに既に存在する場合があります)。バグレポートの一部であるため、繰り返しますが、バグマネージャによって「関連なし」として削除される場合があります。

 tm.selsingen 2017-02-11 19:40:45 CET 


This may be a rough solution not suited for those needing xfwm4 because 
of limited system resources. But you can change the default window 
manager to compiz. This solved the issue for me and I can now enjoy the 
xcfe simplicity combined with generous grabbing areas. 

https://wiki.ubuntuusers.de/Compiz/ 

Enter in terminal: 

"sudo apt-get install compiz compiz-gnome compiz-plugins-extra" 

"sudo apt-get install compizconfig-settings-manager" 

"ccsm" _______________________ 

In CCSM you need to enable OpenGL, Composite, GNOME Compatibility in 
'General' Tab. Within the 'General Options' menu, you can set the focus 
steal prevention to zero, so that new windows are placed always on top, 
and choose your workplaces 

In 'Effects', enable Fading Windows, Window decorations, and if you like 
Animations 

In 'Other', you can enable Window previews (may need png) 

In Tools enable Compiz Library Toolbox, D-Bus, Mousepolling (gets 
activated if you choose Window previews), Session Management and 
Workarounds 

Now in 'Window Management', you need to choose Application Switcher, 
Move Windows, Place Windows, Scale Windows Put and Window Rules. 

Ring, Static & Shift Switcher are more advanced Application Switchers 
you can configure as you like. 

In the CCSM Settings you need to enable Gsettings Configuration Backend. 

________________________ 

Now Compiz is configured, make a Backup of 
"/home/user/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-session.xml" 
and enter 

"xfconf-query -c xfce4-session -p /sessions/Failsafe/Client0_Command -t 
string -sa compiz" 

in terminal to configure xcfe to use compiz as the default window 
manager. ________________________ 

To spare you from needing GNOME Tweak to set your theme now, you can use 

"gsettings set org.gnome.metacity theme insertyourthemehere" to change 
the window decoration theme 

and the default xcfe theme settings to change the rest of the UI. 

I experienced that my minimize/maximize Buttons were gone after that. 

you can use "gsettings set org.gnome.desktop.wm.preferences 
button-layout ':minimize,maximize,close,'" to restore them. 

And that's it. 

Comment 15 tm.selsingen 2017-02-12 09:11:22 CET 

I don't know how to edit posts, but I realized the desktop icon texts 
get displaced if you follow the steps. This is the fix: 

xfconf-query -c xfce4-desktop -p /desktop-icons/center-text -n -t bool 
-s false 

「追加して編集」アプローチはほとんどの場所で機能するようですが、Firefoxでは機能しません。YMMV。
-HiTechHiTouch

Greybirdテーマでは、ウィンドウのサイズ変更マージンは1ピクセルのみですが、少なくともXFCE(Ubuntu 18.04 + xubuntu-desktopパッケージ)に付属するKokodiテーマでは、マージンが広くなり、使用しやすくなります。
Teemu Leisti
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.