Skip to content

Commit 987ebe1

Browse files
committed
new scrots and config
1 parent a5f15f9 commit 987ebe1

File tree

5 files changed

+115
-12
lines changed

5 files changed

+115
-12
lines changed

README.md

Lines changed: 8 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,21 @@
11
# Junicchi's Linux Rice
2+
using same rice on kali, d*bian and devuan. this repo is mostly my dump but also has some innovative and useful stuff.
23
![Single](Screenshots/rice_0.png)
34

45

5-
## Preferences
6+
## What's new?
67
- Current playing souncloud track to status bar [script](https://github.com/KebabLord/dotfiles/blob/master/i3/scripts/soundcloud)
78
- Gaps Mode, which you can easily manage inner/outer/vertical/horizontal gaps and switch between gaps profiles
8-
- Disable steam news popup
9-
- Keep an urxvt and nutilus dropdown in background
10-
- A full transparent minimal bar
11-
- Characters rather than numbers as workspace names with static sequance
12-
- [Bash aliases](https://github.com/KebabLord/dotfiles/blob/master/.bash_aliases) with handy functions
9+
- A full transparent minimal bar with characters rather than numbers as workspace names with static sequance.
10+
- [Bash aliases](https://github.com/KebabLord/dotfiles/blob/master/.bash_aliases) full of shit functions and a terminal/explorer dropdowns in background
1311

1412
![CurrentTrack](Screenshots/sc.png)
1513
![Modes](Screenshots/modes.png)
1614

17-
## Other dotfiles
18-
- Rofi theme, mosaic screen locker script
19-
- Compton config for window shadows and soft transition effect
20-
- Xresources and Xdefautls for terminal (urxvt) colors
21-
- Sublime text keybindings and config
22-
- Qutebrowser custom search methods
15+
# Slim Lock Screen
16+
![Slim theme](slim/preview.png)
17+
selects a random ascii art everytime, here is the list:
18+
![List of ascii arts](slim/ascii_list.png)
2319

2420
## Other Screenshots
2521
![Single](Screenshots/rice_1.png)

Screenshots/old_rice_1.png

2.01 MB
Loading

Screenshots/rice_1.png

194 KB
Loading

flameshot.conf

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
[General]
2+
buttons=@Variant(\0\0\0\x7f\0\0\0\vQList<int>\0\0\0\0\a\0\0\0\0\0\0\0\x1\0\0\0\x2\0\0\0\x3\0\0\0\x12\0\0\0\xf\0\0\0\v)
3+
closeAfterScreenshot=false
4+
contastUiColor=#3e3e3e
5+
contrastOpacity=204
6+
disabledTrayIcon=false
7+
drawColor=#00ffff
8+
drawThickness=0
9+
savePath=/home/owo/Pictures/Screenshots/
10+
showHelp=false
11+
startupLaunch=true
12+
uiColor=#212121

neofetch.conf

Lines changed: 95 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
#!/usr/bin/env bash
2+
#
3+
# Neofetch config file
4+
# https://github.com/dylanaraps/neofetch
5+
6+
# Speed up script by not using unicode
7+
export LC_ALL=C
8+
export LANG=C
9+
10+
print_info() {
11+
info title
12+
info underline
13+
14+
info "OS" distro
15+
info "WM" wm
16+
info "Term" term
17+
info "Font" font
18+
info "Theme" theme
19+
info "Icons" icons
20+
info "Terminal Font" term_font
21+
22+
info line_break
23+
info cols
24+
info line_break
25+
26+
info "CPU" cpu
27+
info "GPU" gpu
28+
info "Memory" memory
29+
}
30+
31+
32+
# Distro
33+
distro_shorthand="tiny"
34+
os_arch="off"
35+
36+
37+
# Memory
38+
memory_percent="off"
39+
memory_unit="gib"
40+
41+
42+
# Shell
43+
shell_path="off"
44+
shell_version="off"
45+
46+
47+
# CPU
48+
speed_type="bios"
49+
cpu_shorthand="tiny"
50+
cpu_speed="off"
51+
cpu_cores="logical"
52+
cpu_temp="off"
53+
54+
55+
# GPU
56+
gpu_brand="off"
57+
refresh_rate="off"
58+
59+
60+
# Gtk Theme / Icons / Font
61+
gtk_shorthand="on"
62+
gtk2="on"
63+
gtk3="on"
64+
65+
66+
# Text Colors
67+
#colors=(4 6 1 8 8 6)
68+
colors=(distro)
69+
bold="on"
70+
underline_enabled="on"
71+
underline_char="-"
72+
73+
74+
# Color Blocks
75+
block_range=(0 7)
76+
color_blocks="on"
77+
block_width=3
78+
block_height=1
79+
80+
81+
# Ascii Options
82+
ascii="distro"
83+
ascii_distro="auto"
84+
#ascii_colors=(8 6 1 8 8 6)
85+
#ascii_colors=(distro)
86+
ascii_logo_size="normal"
87+
ascii_bold="on"
88+
89+
90+
# Scrot Options
91+
scrot="off"
92+
scrot_cmd="auto"
93+
scrot_dir="$HOME/Pictures/Screenshots"
94+
scrot_name="neofetch-$(date +%F-%I-%M-%S-${RANDOM}).png"
95+
image_host="teknik"

0 commit comments

Comments
 (0)