If this is your first visit, be sure to
check out the FAQ. You will have to register
before you can post. To start viewing messages,
select the forum that you want to visit from the selection below.
Please do not use the CODE tag when pasting content that contains formatting (colored, bold, underline, italic, etc).
The CODE tag displays all content as plain text, including the formatting tags, making it difficult to read.
Windows no longer obstructs my view.
Using Kubuntu Linux since March 23, 2007.
"It is a capital mistake to theorize before one has data." - Sherlock Holmes
Re: How do I take a screenshot of KDM & Splash?
One gains experience by doing.
Steps:
1. Verify that xwd is installed:
a) open a console
b) type: sudo apt-get installx11-apps
(This will install the applicaton if not installed, otherwise you will be told: x11-apps is already the newest version.)
2. Open Kate as root:
a) Alt+F2
b) type: kdesudo kate/usr/local/bin/snap
3. Copy and paste the following into the Untitled - Kate document:
#!/bin/bash
for i in {1..20..1}
do
xwd -out /home/your_username/snap/screenshot-$i.xwd -root -display :0.0
sleep 1
done
(Replace your_username with your logon username)
4. Save, then Close the file. Keep Kate open.
5. In Kate, click File > Open and type: /etc/kde4/kdm/Xsetup
6. Copy and paste the following at the end of the file:
# xwd call
/usr/local/bin/snap &
7. Save, Close, and Exit Kate.
8. Open a console and type:
a) sudo chmod +x/usr/local/bin/snap
b) mkdirsnap
9. Exit the console.
10. Shutdown and reboot your PC.
If you did everything correctly, you will have 20 images in the snap folder in your user home directory.
Windows no longer obstructs my view.
Using Kubuntu Linux since March 23, 2007.
"It is a capital mistake to theorize before one has data." - Sherlock Holmes
Re: How do I take a screenshot of KDM & Splash?
Yup. Good catch. I'll edit my post.
Windows no longer obstructs my view.
Using Kubuntu Linux since March 23, 2007.
"It is a capital mistake to theorize before one has data." - Sherlock Holmes
Re: How do I take a screenshot of KDM & Splash?
Windows no longer obstructs my view.
Using Kubuntu Linux since March 23, 2007.
"It is a capital mistake to theorize before one has data." - Sherlock Holmes
Comment