You are not logged in.
Pages: 1
Hey
I have tried to make neofetch start every time termite opens but couldn't resolve and searched too much articles all comes with same answers which is adding it to .bashrc and i did add it to, but still not working.
Should i add to bspwm config file or sxhkd config file?
Iam using bspwm with polybar.
Offline
Try making an motd script that calls neofetch and placing the script in profile.d.
Offline
Try making an motd script that calls neofetch and placing the script in profile.d.
Thank you for reply, But i dont know how to make this script, Any thing i can go through?
Offline
Create a script and call it motd-banner.sh or similar and in the script just simply call neofetch:
#!/bin/bash
neofetchAnd place the script in profile.d, sudo chmod +x the script to enable execution.
motd is 'message of the day' so you can add other messages you fancy in the script.
I assume the simple neofetch command is sufficient, but use whatever command you use in the regular terminal to call it.
Edit: I always meant /etc/profile.d
Last edited by d_fajardo (2020-09-17 11:35:14)
Offline
Thank you for answer
But it still not working this my outputs:
jwtiyar@Arch-Jwtiyar /e/profile.d> ls -l
total 64
-rw-r--r-- 1 root root 225 تەم 3 12:52 flatpak-bindir.sh
-rw-r--r-- 1 root root 813 تەم 3 12:52 flatpak.sh
-rw-r--r-- 1 root root 545 ئای 9 18:05 freetype2.sh
-rw-r--r-- 1 root root 1107 نیس 15 06:38 gawk.csh
-rw-r--r-- 1 root root 757 نیس 15 06:38 gawk.sh
-rwxr-xr-x 1 root root 105 ئەی 15 15:04 gpm.sh*
-rw-r--r-- 1 root root 207 ئای 16 09:30 jre.csh
-rw-r--r-- 1 root root 205 ئای 16 09:30 jre.sh
-rw-r--r-- 1 root root 191 ئەی 3 15:32 libreoffice-fresh.csh
-rw-r--r-- 1 root root 191 ئەی 3 15:32 libreoffice-fresh.sh
-rw-r--r-- 1 root root 766 ئاب 21 11:19 locale.sh
-rwxr-xr-x 1 root root 23 ئەی 17 11:49 neofetch-call-termite.sh*
-rw-r--r-- 1 root root 468 حوز 21 09:19 perlbin.csh
-rw-r--r-- 1 root root 455 حوز 21 09:19 perlbin.sh
-rw-r--r-- 1 root root 962 ئای 29 21:14 vte.csh
-rw-r--r-- 1 root root 1364 ئای 29 21:14 vte.sh
jwtiyar@Arch-Jwtiyar /e/profile.d> jwtiyar@Arch-Jwtiyar /e/profile.d> cat neofetch-call-termite.sh
#!/bin/bash
neofetch
jwtiyar@Arch-Jwtiyar /e/profile.d> Offline
Rename the file as motd-banner.sh. This could be a naming scheme.
Edit: Does /etc/motd exists in your system?
Last edited by d_fajardo (2020-09-17 12:20:02)
Offline
Rename the file as motd-banner.sh. This could be a naming scheme.
Edit: Does /etc/motd exists in your system?
Didn't work changing the name.
It was exist when you first told me to create modt script and it was empty, but now its not exist.
Offline
It seems like your /etc/motd was a symlink. Can you try recreating one i.e. sudo touch /etc/motd and try again?
Also can you post your /etc/pam.d/system-login?
Offline
It seems like your /etc/motd was a symlink. Can you try recreating one i.e. sudo touch /etc/motd and try again?
Also can you post your /etc/pam.d/system-login?
I did but didn't work, But sorry one question how it goes to termite to make termite show neofetch while it opens?
Output of systtem-login:
jwtiyar@Arch-Jwtiyar ~> cat /etc/pam.d/system-login
#%PAM-1.0
auth required pam_shells.so
auth requisite pam_nologin.so
auth include system-auth
account required pam_access.so
account required pam_nologin.so
account include system-auth
password include system-auth
session optional pam_loginuid.so
session optional pam_keyinit.so force revoke
session include system-auth
session optional pam_motd.so motd=/etc/motd
session optional pam_mail.so dir=/var/spool/mail standard quiet
-session optional pam_systemd.so
session required pam_env.so user_readenv=1
jwtiyar@Arch-Jwtiyar ~> Offline
Sorry to renew the post, but problem didnt resolve after new installation also.
Now after adding it to .bashrc and do source .bashrc it will work ok but opening new terminal not workin.
Offline
Pages: 1