Linux とか... 時々 Mac ( ꒪⌓꒪)

いろいろと試行錯誤の毎日? ( ꒪⌓꒪)

お手軽に半透明 (ウィンドウ透過) 設定をするツール

本来なら、Xcompmgr や transset ユーティリティを使うようですが…

「Devilspie」と言う小さなパッケージで透過するアプリを限定して使ってみました!

Linux Mint Cinnamon 18.2 では

GNOME 端末は、透過設定が標準で可能なので…

Xed テキストエディターと Nemo ファイルマネージャを少し透過しました!

設定ファイルを作成

$ mkdir ~/.devilspie
$ xed ~/.devilspie/transparent.ds
(if
 (matches (window_class) "Xed")
 (opacity 90)
)

(if
 (matches (window_class) "Nemo")
 (opacity 90)
)
Arch Linux Cinnamon デスクトップ環境では

GNOME 端末は、標準設定で透過にならないので…

Gedit テキストエディターと Nemo ファイルマネージャを少し透過しました!

$ gedit ~/.devilspie/transparent.ds
(if
 (matches (window_class) "Gnome-terminal")
 (opacity 90)
)

(if
 (matches (window_class) "Nemo")
 (opacity 90)
)

(if
 (matches (window_class) "Gedit")
 (opacity 90)
)

Cinnamon の自動起動するアプリケーションに「devilspie」を登録

あまりスケスケにすると使いづらいので、控えめにしています。



使用(仕様)環境により異なる内容があっても「自己責任で…( ꒪⌓꒪)」