/srv/irclogs.ubuntu.com/2016/10/06/#ubuntu-mate.txt

guest-cola8mhay everyone04:26
mate|48272how to get clip grab08:22
mate|48272clipgrab please08:23
mate|48272hello08:24
eightfoldhi there11:43
eightfoldi'm trying to change the title bar color in "TratidionalOk"11:44
eightfoldi've succeeded before, but i can't remember how11:44
eightfoldhttp://i.imgtc.com/NpJbJ0P.png11:45
eightfoldsomething like this ^11:45
eightfoldi can't seem to change from the default blue color of the theme though11:45
greenmanspiritHello! Where would you all recommend I look for instructions on how to customize a users default profile? I want to use this OS in our computer labs but I want a school image as the default wallpaper. Thanks!14:01
21WAABK0Ihi14:10
ouroumovgreenmanspirit, hi14:12
ouroumovgreenmanspirit, that's a good question, maybe you can ask on the forums? https://ubuntu-mate.community/14:12
greenmanspiritthanks for the info14:15
alkisggreenmanspirit: google for default and mandatory gsettings14:17
alkisgThen run this: dconf watch /14:18
alkisgThen change the wallpaper and see which gsetting key it is using14:18
alkisgFinally, create either a default or a mandatory setting for that, whatever you prefer14:18
alkisgDon't use default profiles; using default/mandatory gsettings instead14:18
greenmanspiritok, thank yoiu alkisg14:30
alkisgnp14:30
hpHi I want to ask how to set the click of the touchpad15:13
Akulihp, system -> settings -> mouse15:58
tioxWhy must lightdm be so hard?17:19
tioxouroumov_ any way I could do per-user actions after signin and signoff?17:21
ouroumov_hey tiox17:21
tioxHey there,'17:22
ouroumov_tiox, I'd say use custom scripts in startup applications, but I'm not sure17:22
ouroumov_might be a good question for the forum17:22
tioxThat's what I am doing for an instance of xfdesktop right now but I _really_ want to have lightdm handle it just for me.17:22
tioxBecause the ay I have it now uses a shutdown script to handle post-session actions with that desktop.17:23
tioxWhen it really needs to be a logoff script.17:23
tioxAhh. I think I found something else. UM uses systemd right?17:26
ouroumov_tiox, all Ubuntu 16.04 use systemd17:27
Akuliis the poweroff command not in 16.04 anymore?17:32
alkisgtiox: the best way to do that is with pam scripts, not with dm scripts17:51
alkisgThat way the scripts get to run whatever DM or DE you have... and even if you login with ssh or shell17:52
alkisgNote though that logoff scripts are *not* guaranteed to run; e.g. xorg might have crashed or the pc rebooted, so the cleanup actions usually also go both in logoff and in logon scripts17:52
tioxalkisg: More details please?17:57
tioxI would love t know about these pam scripts.17:57
tioxAnd how nonstick they are. (Insert rimshot here.)17:57
tioxThat detail about running with shell, though; I am not terribly keen on that, I am just looking to make a login and logout script for a single user.18:00
tioxBecause of some actions that need to be done with xfdesktop to remember icon positions.18:01
alkisgtiox: http://unix.stackexchange.com/questions/136548/force-command-to-be-run-on-logout-or-disconnect18:24
FozzyHello.  I started using Ubuntu Mate at 15.10 and updated to 16.04 (took me a while).  Occasionally I have noticed some glitches with layering where the visible window is not the one that is actually on top.  It confused me a bit at first, and have gotten used to it, but I was wondering if this is an issue that other people have had and if there are any solutions.  Thanks!19:31
alkisgFozzy: which window manager are you using, marco with compositing, without it, or compiz or compton?19:32
alkisgI haven't seen that issue, and I'm using marco without compositing19:32
tioxalkisg: Good advice and all, reading through it there _should_ be a pam definition for logging out (sshd) but it does not exist. How could I discover which pam.d file i used while logging out of a session?19:32
alkisgtiox: did you read the answer? It mentions how to do an "if" to decide if it's login or logout19:33
Fozzyalkisg: It looks like I have marco (software compositor) selected19:33
alkisgtiox: if [ "$PAM_TYPE" = "close_session" ]; then19:33
alkisgFozzy: just as a test, you might want to try it without compositing and see if it also happens there19:34
tioxAh,19:34
Fozzyalkisg: I will try that and see how it goes.  Thank you!19:34
tioxSo a single file can be used for login and logout.19:34
alkisgFozzy: in general, bug reports for marco go to launchpad, someone might already have filed one19:35
alkisgtiox: yup19:35
tioxI suppose the opposide of close_session would be open_session then?19:35
tioxopposite*19:35
tioxOr is close_session some placeholder I am suppose to fit into my setup?19:35
alkisgtiox: manpages.ubuntu.com/pam_exec19:35
tioxThank you.19:35
alkisgYou're welcome19:35
alkisg"PAM_TYPE, which contains one of the module types:       account, auth, password, open_session and close_session."19:36
tioxI see that. Thanks a bunch.19:37
alkisgnp19:37
tioxI suppose this would affect all users, yeah?19:37
alkisgYup, and you can also check for the username if you want specific users19:37
tioxSo if I wanted a per-user setup I would need to tell the script to execute script in ~ just to make it easier.19:38
alkisgIt depends on if you want the users to be able to modify those scripts or not19:38
alkisgE.g. imagine running *their* script as root... :)19:38
tioxYeah. That's probably not a terribly good idea.19:39
tioxI was thinking, now that you showed me that, trying to fit this into the pam script; https://ubuntuforums.org/showthread.php?t=1918649&p=12591743#post1259174319:40
tioxAlbeit slightly modified, and I did want it to be user-modifiable.19:40
alkisgpam is better than lightdm hooks19:41
alkisgBut of course whatever works for you...19:42
tioxNot the lightdm hook I am looking at.19:42
tioxI was looking at what that post is trying to execute.19:42
alkisgYou can also use xsession scripts if you prefer19:42
tioxWhich would be easier to explain?19:42
alkisgIMHO it's best to select the pam method, even if it takes you a bit longer to implement it as you want it19:43
tioxFair enough.19:43
tioxSo what I intend to do now, thanks to you is attemptt o use a pam script to run two execution scripts; one for open_session and one for close_session, somewhere in ~19:43
tioxThe idea of that post is to run a script in ~, which I am sure I could figure out how to do. I am still looking to make this a per-user thing so different users can hav different settings.19:44
tioxhave*19:44
=== silvio is now known as Guest77376
mate|44550hello. i am currently running ubuntu mate (most recent LTS) on a Macbook Pro Retina and I was wondering how I can make fonts and menu bars larger, or if there's a high-dpi mode available. thanks!22:18
hp#bioinformatics22:52
judaswhat linux kernel is this23:44

Generated by irclog2html.py 2.7 by Marius Gedminas - find it at mg.pov.lt!