mirror of
https://github.com/adi1090x/rofi.git
synced 2024-11-23 06:38:21 -05:00
Compare commits
15 Commits
b810bbff83
...
f0ad83f4b6
Author | SHA1 | Date | |
---|---|---|---|
|
f0ad83f4b6 | ||
|
09a09db221 | ||
|
6f8b187a10 | ||
|
730b53e221 | ||
|
3a569d5594 | ||
|
3c85b46c79 | ||
|
139114e146 | ||
|
0e10e9257f | ||
|
326cc548b5 | ||
|
62d82fc292 | ||
|
10739c30b1 | ||
|
4b14ac9068 | ||
|
a0848ed025 | ||
|
7f98b34211 | ||
|
66e731c831 |
26
README.md
26
README.md
@ -116,10 +116,15 @@ $ ./setup.sh
|
|||||||
|
|
||||||
## Launchers
|
## Launchers
|
||||||
|
|
||||||
**`Change Style` :** Edit `~/.config/rofi/launchers/type-X/launcher.sh` script and edit the following line to use the style you like.
|
**`Change Style` :** You have two options to change the launcher style
|
||||||
```
|
|
||||||
theme='style-1'
|
1. Either edit the `~/.config/rofi/launchers/type-X/launcher.sh` script and edit the following line to use the style you like.
|
||||||
```
|
|
||||||
|
theme='style-1'
|
||||||
|
|
||||||
|
2. Or pass "`style-X`" *(with `X` being the style number)* to the `launcher.sh` script. When using no argument, `style-1` will be used as default.
|
||||||
|
|
||||||
|
~/.config/rofi/launchers/type-X/launcher.sh style-X
|
||||||
|
|
||||||
**`Change Colors` :** Edit `~/.config/rofi/launchers/type-X/shared/colors.rasi` file and edit the following line to use the color-scheme you like.
|
**`Change Colors` :** Edit `~/.config/rofi/launchers/type-X/shared/colors.rasi` file and edit the following line to use the color-scheme you like.
|
||||||
```css
|
```css
|
||||||
@ -364,10 +369,15 @@ style='style-1.rasi'
|
|||||||
|
|
||||||
## Powermenus
|
## Powermenus
|
||||||
|
|
||||||
**`Change Style` :** Edit `~/.config/rofi/powermenu/type-X/powermenu.sh` script and edit the following line to use the style you like.
|
**`Change Style` :** You have two options to change the powermenu style
|
||||||
```
|
|
||||||
theme='style-1'
|
1. Either edit the `~/.config/rofi/powermenu/type-X/powermenu.sh` script and edit the following line to use the style you like.
|
||||||
```
|
|
||||||
|
theme='style-1'
|
||||||
|
|
||||||
|
2. Or pass "`style-X`" *(with `X` being the style number)* to the `powermenu.sh` script. When using no argument, `style-1` will be used as default.
|
||||||
|
|
||||||
|
~/.config/rofi/powermenu/type-X/powermenu.sh style-X
|
||||||
|
|
||||||
**`Change Colors` :** Edit `~/.config/rofi/powermenu/type-X/shared/colors.rasi` file and edit the following line to use the color-scheme you like.
|
**`Change Colors` :** Edit `~/.config/rofi/powermenu/type-X/shared/colors.rasi` file and edit the following line to use the color-scheme you like.
|
||||||
```css
|
```css
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
## style-11 style-12 style-13 style-14 style-15
|
## style-11 style-12 style-13 style-14 style-15
|
||||||
|
|
||||||
dir="$HOME/.config/rofi/launchers/type-1"
|
dir="$HOME/.config/rofi/launchers/type-1"
|
||||||
theme='style-1'
|
theme=${1:-'style-1'}
|
||||||
|
|
||||||
## Run
|
## Run
|
||||||
rofi \
|
rofi \
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
## style-11 style-12 style-13 style-14 style-15
|
## style-11 style-12 style-13 style-14 style-15
|
||||||
|
|
||||||
dir="$HOME/.config/rofi/launchers/type-2"
|
dir="$HOME/.config/rofi/launchers/type-2"
|
||||||
theme='style-1'
|
theme=${1:-'style-1'}
|
||||||
|
|
||||||
## Run
|
## Run
|
||||||
rofi \
|
rofi \
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
## style-6 style-7 style-8 style-9 style-10
|
## style-6 style-7 style-8 style-9 style-10
|
||||||
|
|
||||||
dir="$HOME/.config/rofi/launchers/type-3"
|
dir="$HOME/.config/rofi/launchers/type-3"
|
||||||
theme='style-10'
|
theme=${1:-'style-1'}
|
||||||
|
|
||||||
## Run
|
## Run
|
||||||
rofi \
|
rofi \
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
## style-6 style-7 style-8 style-9 style-10
|
## style-6 style-7 style-8 style-9 style-10
|
||||||
|
|
||||||
dir="$HOME/.config/rofi/launchers/type-4"
|
dir="$HOME/.config/rofi/launchers/type-4"
|
||||||
theme='style-1'
|
theme=${1:-'style-1'}
|
||||||
|
|
||||||
## Run
|
## Run
|
||||||
rofi \
|
rofi \
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
## style-1 style-2 style-3 style-4 style-5
|
## style-1 style-2 style-3 style-4 style-5
|
||||||
|
|
||||||
dir="$HOME/.config/rofi/launchers/type-5"
|
dir="$HOME/.config/rofi/launchers/type-5"
|
||||||
theme='style-1'
|
theme=${1:-'style-1'}
|
||||||
|
|
||||||
## Run
|
## Run
|
||||||
rofi \
|
rofi \
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
## style-6 style-7 style-8 style-9 style-10
|
## style-6 style-7 style-8 style-9 style-10
|
||||||
|
|
||||||
dir="$HOME/.config/rofi/launchers/type-6"
|
dir="$HOME/.config/rofi/launchers/type-6"
|
||||||
theme='style-1'
|
theme=${1:-'style-1'}
|
||||||
|
|
||||||
## Run
|
## Run
|
||||||
rofi \
|
rofi \
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
## style-6 style-7 style-8 style-9 style-10
|
## style-6 style-7 style-8 style-9 style-10
|
||||||
|
|
||||||
dir="$HOME/.config/rofi/launchers/type-7"
|
dir="$HOME/.config/rofi/launchers/type-7"
|
||||||
theme='style-1'
|
theme=${1:-'style-1'}
|
||||||
|
|
||||||
## Run
|
## Run
|
||||||
rofi \
|
rofi \
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
|
|
||||||
# Current Theme
|
# Current Theme
|
||||||
dir="$HOME/.config/rofi/powermenu/type-1"
|
dir="$HOME/.config/rofi/powermenu/type-1"
|
||||||
theme='style-1'
|
theme=${1:-'style-1'}
|
||||||
|
|
||||||
# CMDs
|
# CMDs
|
||||||
uptime="`uptime -p | sed -e 's/up //g'`"
|
uptime="`uptime -p | sed -e 's/up //g'`"
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
|
|
||||||
# Current Theme
|
# Current Theme
|
||||||
dir="$HOME/.config/rofi/powermenu/type-2"
|
dir="$HOME/.config/rofi/powermenu/type-2"
|
||||||
theme='style-1'
|
theme=${1:-'style-1'}
|
||||||
|
|
||||||
# CMDs
|
# CMDs
|
||||||
uptime="`uptime -p | sed -e 's/up //g'`"
|
uptime="`uptime -p | sed -e 's/up //g'`"
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
|
|
||||||
# Current Theme
|
# Current Theme
|
||||||
dir="$HOME/.config/rofi/powermenu/type-3"
|
dir="$HOME/.config/rofi/powermenu/type-3"
|
||||||
theme='style-1'
|
theme=${1:-'style-1'}
|
||||||
|
|
||||||
# CMDs
|
# CMDs
|
||||||
uptime="`uptime -p | sed -e 's/up //g'`"
|
uptime="`uptime -p | sed -e 's/up //g'`"
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
|
|
||||||
# Current Theme
|
# Current Theme
|
||||||
dir="$HOME/.config/rofi/powermenu/type-4"
|
dir="$HOME/.config/rofi/powermenu/type-4"
|
||||||
theme='style-5'
|
theme=${1:-'style-1'}
|
||||||
|
|
||||||
# CMDs
|
# CMDs
|
||||||
uptime="`uptime -p | sed -e 's/up //g'`"
|
uptime="`uptime -p | sed -e 's/up //g'`"
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
|
|
||||||
# Current Theme
|
# Current Theme
|
||||||
dir="$HOME/.config/rofi/powermenu/type-5"
|
dir="$HOME/.config/rofi/powermenu/type-5"
|
||||||
theme='style-1'
|
theme=${1:-'style-1'}
|
||||||
|
|
||||||
# CMDs
|
# CMDs
|
||||||
lastlogin="`last $USER | head -n1 | tr -s ' ' | cut -d' ' -f5,6,7`"
|
lastlogin="`last $USER | head -n1 | tr -s ' ' | cut -d' ' -f5,6,7`"
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
|
|
||||||
# Current Theme
|
# Current Theme
|
||||||
dir="$HOME/.config/rofi/powermenu/type-6"
|
dir="$HOME/.config/rofi/powermenu/type-6"
|
||||||
theme='style-1'
|
theme=${1:-'style-1'}
|
||||||
|
|
||||||
# CMDs
|
# CMDs
|
||||||
lastlogin="`last $USER | head -n1 | tr -s ' ' | cut -d' ' -f5,6,7`"
|
lastlogin="`last $USER | head -n1 | tr -s ' ' | cut -d' ' -f5,6,7`"
|
||||||
|
Loading…
Reference in New Issue
Block a user