LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 07-20-2018, 08:08 AM   #3241
Lysander666
Senior Member
 
Registered: Apr 2017
Location: The Underearth
Distribution: Ubuntu, Debian, Slackware
Posts: 2,178
Blog Entries: 6

Rep: Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470

Quote:
Originally Posted by mralk3 View Post
I was connected to my LAN Slackware Mirror and ran head -n 20 ChangeLog.txt. It shows the top 20 lines of a file, in this case the Slackware64 14.2 change log.

Edit: montagdude beat me too it!
Quote:
Originally Posted by montagdude View Post
head. Displays the beginning of a file. There is also a similar command, tail.

Ah, I thought the changelog was stored locally. Makes sense now. I normally use nano to view/edit. I presume head/tail is just view.
 
Old 07-20-2018, 08:46 AM   #3242
mralk3
Slackware Contributor
 
Registered: May 2015
Distribution: Slackware
Posts: 1,900

Rep: Reputation: 1050Reputation: 1050Reputation: 1050Reputation: 1050Reputation: 1050Reputation: 1050Reputation: 1050Reputation: 1050
Sorry for the off topic posts everyone.

Quote:
Originally Posted by Lysander666 View Post
Ah, I thought the changelog was stored locally. Makes sense now. I normally use nano to view/edit. I presume head/tail is just view.
The change log is stored on the mirror site you use. I have my own mirror on my LAN because I frequently install multiple (containers, virtual machines) systems over the network using http. I do this to save bandwidth for remote mirrors. If you use slackpkg, or another package manager, the change log is downloaded to your system, and compared to the previous change log to see if there are updates.

head/tail are used to view the start or end of a file. check the man pages. A common use for tail is tail -f /var/log/syslog or tail -f /var/log/messages.
 
Old 07-21-2018, 10:36 AM   #3243
frankbell
LQ Guru
 
Registered: Jan 2006
Location: Virginia, USA
Distribution: Slackware, Ubuntu MATE, Mageia, and whatever VMs I happen to be playing with
Posts: 19,324
Blog Entries: 28

Rep: Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142
Back on topic: RealPlayer playing on Windows Seven running in VirtualBox in seamless mode on Slackware 14.2 under the Fluxbox window manager. Note that you can see both the Windows menu from the virtual machine and the Fluxbox menu from the host machine.

http://pineviewfarm.net/weblog/wp-co...-07-20_500.jpg
 
2 members found this post helpful.
Old 07-21-2018, 02:33 PM   #3244
bbKid
LQ Newbie
 
Registered: Jul 2018
Location: Moldova
Distribution: linuxslackware
Posts: 23

Rep: Reputation: Disabled
The screenshot of my desktop.
Click image for larger version

Name:	shot1.jpg
Views:	227
Size:	99.0 KB
ID:	28177
 
4 members found this post helpful.
Old 07-21-2018, 04:10 PM   #3245
Poprocks
Member
 
Registered: Sep 2003
Location: Toronto, Canada
Distribution: Slackware
Posts: 522

Rep: Reputation: 279Reputation: 279Reputation: 279
Nice bbKid, is that just Fluxbox with a bunch of apps running in the systray?
 
Old 07-21-2018, 04:44 PM   #3246
bbKid
LQ Newbie
 
Registered: Jul 2018
Location: Moldova
Distribution: linuxslackware
Posts: 23

Rep: Reputation: Disabled
Quote:
Originally Posted by Poprocks View Post
Nice bbKid, is that just Fluxbox with a bunch of apps running in the systray?
No, it's OpenBox + Tint2.
 
Old 07-21-2018, 10:35 PM   #3247
phalange
Member
 
Registered: May 2018
Distribution: Slackware, FreeBSD, Debian
Posts: 355

Rep: Reputation: 184Reputation: 184
DWM

Here's my current DWM setup; still have some scripts to add. Bar is slstatus and terminal is st.

Click image for larger version

Name:	dwm_screen.jpg
Views:	154
Size:	141.7 KB
ID:	28185

Last edited by phalange; 07-21-2018 at 10:37 PM.
 
3 members found this post helpful.
Old 07-21-2018, 10:39 PM   #3248
phalange
Member
 
Registered: May 2018
Distribution: Slackware, FreeBSD, Debian
Posts: 355

Rep: Reputation: 184Reputation: 184
And here's my current ratpoison setup.

Click image for larger version

Name:	rat_screen.png
Views:	197
Size:	406 Bytes
ID:	28186
 
8 members found this post helpful.
Old 07-22-2018, 08:40 AM   #3249
Lysander666
Senior Member
 
Registered: Apr 2017
Location: The Underearth
Distribution: Ubuntu, Debian, Slackware
Posts: 2,178
Blog Entries: 6

Rep: Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470
A bit more 'ricing' and getting the desktop looking cleaner with some help from the Whisker menu.

Slightly adapted Arne Hartherz's code in order to get the text RAM monitor in the panel there, to this:

Code:
#!/bin/sh
meminfo=`free -m | grep 'Mem:'`

used=`echo $meminfo | cut -d" " -f3`
total=`echo $meminfo | cut -d" " -f2`
cached=`echo $meminfo | cut -d" " -f7`

really_used=`expr $used - $cached`

echo "$used"
Attached Thumbnails
Click image for larger version

Name:	Screenshot_2018-07-22_14-35-26.jpg
Views:	138
Size:	51.4 KB
ID:	28188   Click image for larger version

Name:	Screenshot_2018-07-22_16-07-05.jpg
Views:	151
Size:	109.2 KB
ID:	28191  

Last edited by Lysander666; 07-22-2018 at 10:07 AM.
 
5 members found this post helpful.
Old 07-22-2018, 01:35 PM   #3250
ChuangTzu
Senior Member
 
Registered: May 2015
Location: Where ever needed
Distribution: Slackware/Salix while testing others
Posts: 1,718

Rep: Reputation: 1857Reputation: 1857Reputation: 1857Reputation: 1857Reputation: 1857Reputation: 1857Reputation: 1857Reputation: 1857Reputation: 1857Reputation: 1857Reputation: 1857
Quote:
Originally Posted by phalange View Post
And here's my current ratpoison setup.

Attachment 28186
Nice, but that also looks eerily similar to what I imagine Gnome 4 to look like.
 
3 members found this post helpful.
Old 07-22-2018, 02:21 PM   #3251
coralfang
Member
 
Registered: Nov 2010
Location: Bristol, UK
Distribution: Slackware, FreeBSD
Posts: 836
Blog Entries: 3

Rep: Reputation: 297Reputation: 297Reputation: 297
Quote:
Originally Posted by Lysander666 View Post
A bit more 'ricing' and getting the desktop looking cleaner with some help from the Whisker menu.
That has to be the best/clean looking xfce desktop i've ever seen. Nice one.
 
1 members found this post helpful.
Old 07-22-2018, 03:17 PM   #3252
Lysander666
Senior Member
 
Registered: Apr 2017
Location: The Underearth
Distribution: Ubuntu, Debian, Slackware
Posts: 2,178
Blog Entries: 6

Rep: Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470
Quote:
Originally Posted by coralfang View Post
That has to be the best/clean looking xfce desktop i've ever seen. Nice one.
Sam Hewitt's Paper Mono Dark icons deserve a lot of the credit, they look seriously good with dark Xfce themes.
 
1 members found this post helpful.
Old 07-23-2018, 05:23 PM   #3253
Poprocks
Member
 
Registered: Sep 2003
Location: Toronto, Canada
Distribution: Slackware
Posts: 522

Rep: Reputation: 279Reputation: 279Reputation: 279
https://i.imgur.com/BCsGJEZ.png

This screenshot is what I call "Clash of the Titans." Meant to be presented as an exact opposite of the minimalist screenshots posted in this thread, including the last one I posted which is of a minimal icewm.

This is Slackware Current, running Plasma5 version 5.12.6 from AlienBOB's ktown, completely vanilla and unconfigured, with konsole on the left, and Microsoft Office 2010 Word on the right, running under WINE downloaded from winehq.org.

This screenshot is provided to demonstrate the outstanding interoperability that is possible with Slackware.

In order to get the fonts to look the way they do under WINE, I had to recompile Freetype to enable the old subpixel rendering mode. This is probably only necessary due to a bug in WINE. See: https://bugs.winehq.org/show_bug.cgi?id=41639
 
2 members found this post helpful.
Old 07-23-2018, 11:10 PM   #3254
qweasd
Member
 
Registered: May 2010
Posts: 621

Rep: Reputation: Disabled
bit depth

Quote:
Originally Posted by phalange View Post
And here's my current ratpoison setup.

Attachment 28186
Grayscale screenshot, wow, how did you do it? X.org visual option? Screenshot app filter? Or some devious artsy post-processing?
 
Old 07-23-2018, 11:55 PM   #3255
montagdude
Senior Member
 
Registered: Apr 2016
Distribution: Slackware
Posts: 2,011

Rep: Reputation: 1619Reputation: 1619Reputation: 1619Reputation: 1619Reputation: 1619Reputation: 1619Reputation: 1619Reputation: 1619Reputation: 1619Reputation: 1619Reputation: 1619
I'm working on a weather script. Currently I have gotten it to display the current conditions in tint2. The next step is to also get the hourly and daily forecast data to display in an Openbox pipe menu.
Attached Thumbnails
Click image for larger version

Name:	openbox_weather.jpg
Views:	133
Size:	82.0 KB
ID:	28201  

Last edited by montagdude; 07-23-2018 at 11:57 PM.
 
3 members found this post helpful.
  


Reply

Tags
background, cwm, dwm, framebuffer, gnome, gui, i3, ion3, kde, monitor, musca, screenshot, tmux, wallpaper, xfce4, xterm



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
3D Desktop on Slackware? darkhatter Slackware 3 10-10-2006 12:26 PM
Slackware 10.0 with NO Desktop NiPP Linux - Newbie 2 01-02-2006 10:43 AM
3d desktop on Slackware k1ll3r_x Linux - Software 1 09-20-2005 10:47 PM
Desktop Slackware s0no Slackware 5 12-04-2004 11:20 AM
I can't get my desktop in Slackware 10 DraGoNsLaYeR Linux - Newbie 1 06-27-2004 02:00 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 10:33 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration