推荐用于窗口管理器的自动安装程序吗?


9

在Ubuntu上使用平铺窗口管理器自动安装USB驱动器,光盘,硬盘驱动器等的推荐方法是什么?

我是平铺窗口管理器的忠实拥护者,但是每当有人用usb密钥走到我面前时,我总是看起来像一个该死的傻瓜,并且我开始疯狂地输入命令来创建挂载点,找出/ dev中设备的名称,安装等等。

我目前正在使用i3,但由于这对我来说是一个比awesome / i3 / dwm之间的区别更大的问题...


超级用户上还列出了其他一些选项。(我还没有测试它们中的任何一个,所以我没有将它们添加为答案。)
aplaice

我使用pmount / pumount,它至少自动创建了挂载点。但是您仍然必须知道设备名称。
罗伯特·弗莱明

Answers:


2

您可以将udisks-glue用于以下配置。请注意,这正在运行Awesome,该页面具有用于自动挂载页面,您可以在其中找到其他不太优雅的解决方案(以我不太卑鄙的观点)。

 filter disks {
        optical = false
        partition_table = false
        usage = filesystem
 }
 match disks {
        automount = true
        automount_options = sync
        post_mount_command = "notify-send \"Disks-glue mount USB\" \"mounted %device_file on %mount_point\" --icon=/path/to/ikons/usb.png"
        post_unmount_command = "notify-send \"Disks-glue umount USB\" \"umounted %device_file from %mount_point\" --icon=/path/to/ikons/usb.png"
 }

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.