mirror of
https://github.com/Fluffy-Bean/dots.git
synced 2025-05-14 07:42:14 +00:00
first commit
This commit is contained in:
commit
e55d8c9640
15 changed files with 894 additions and 0 deletions
76
README.md
Normal file
76
README.md
Normal file
|
@ -0,0 +1,76 @@
|
||||||
|
# Config Files
|
||||||
|
|
||||||
|
Fluffy's config files for Arch Linux, but should work on other distros.
|
||||||
|
|
||||||
|
## Colour Schemes
|
||||||
|
|
||||||
|
I did NOT make any of the colour schemes, so some of the config files cannot be included (so far just the Alacritty config)
|
||||||
|
Please refer to the original repositories for those
|
||||||
|
|
||||||
|
- [Paradise](https://github.com/Manas140/paradise)
|
||||||
|
- [Gruvbox](https://github.com/morhetz/gruvbox)
|
||||||
|
|
||||||
|
## How to use
|
||||||
|
|
||||||
|
### The dependencies
|
||||||
|
|
||||||
|
Yes, some stuff have dependencies
|
||||||
|
|
||||||
|
| App | Extra configuration needed? |
|
||||||
|
|-----------|-----------------------------|
|
||||||
|
| Discord | Yes (BetterDiscord) |
|
||||||
|
| Spotify | Yes (Spicetify) |
|
||||||
|
| Polybar | Yes (Extensions) |
|
||||||
|
| Alacritty | No |
|
||||||
|
| Firefox | Yes (Flags) |
|
||||||
|
| Rofi | No |
|
||||||
|
|
||||||
|
Please read through this as some things will not work just by copy and pasting into the .config folder.
|
||||||
|
If you feel like I missed a dependency, please contact me on the following:
|
||||||
|
|
||||||
|
- Issue on GitHub
|
||||||
|
- [Twitter](https://twitter.com/fluffybeanUwU)
|
||||||
|
- [Telegram](https://t.me/Fluffy_Bean)
|
||||||
|
|
||||||
|
### How to use configs
|
||||||
|
|
||||||
|
#### Discord
|
||||||
|
|
||||||
|
1. Download and install BetterDiscord
|
||||||
|
2. Move the themes from the Discord folder into the themes folder on BetterDiscord (usually under .config/BetterDiscord/themes)
|
||||||
|
3. Go into your discord settings
|
||||||
|
4. Under BetterDiscord section go into themes and choose (Gruvbox or Paradise)
|
||||||
|
|
||||||
|
#### Spotify
|
||||||
|
|
||||||
|
1. Download and install Spicetify
|
||||||
|
2. Install the marketplace extension
|
||||||
|
3. Install both Dribbblish theme and Custom CSS plugin
|
||||||
|
4. Go into the custom css section, F12 by default, and paste the colours.css code into the window that now opened
|
||||||
|
|
||||||
|
#### Polybar
|
||||||
|
|
||||||
|
1. Add text!
|
||||||
|
|
||||||
|
#### Firefox
|
||||||
|
|
||||||
|
1. Add text!
|
||||||
|
|
||||||
|
#### Rofi - Optional
|
||||||
|
|
||||||
|
1. Go into the rofi config file
|
||||||
|
2. Change the image
|
||||||
|
|
||||||
|
or
|
||||||
|
|
||||||
|
2. Remove the image overall and by editing line 70 out
|
||||||
|
|
||||||
|
## ToDo
|
||||||
|
|
||||||
|
- Make a script to automate all this
|
||||||
|
- Fix errors
|
||||||
|
- Finish README
|
||||||
|
|
||||||
|
## License
|
||||||
|
|
||||||
|
Open source UwU license
|
20
alacritty/alacritty.yml
Normal file
20
alacritty/alacritty.yml
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
#I did not make colours for config, please refere to README for more info
|
||||||
|
|
||||||
|
window:
|
||||||
|
opacity: 1.0
|
||||||
|
padding:
|
||||||
|
x: 12
|
||||||
|
y: 12
|
||||||
|
dynamic_padding: true
|
||||||
|
|
||||||
|
font:
|
||||||
|
normal:
|
||||||
|
#family: "Fira Code"
|
||||||
|
family: "Cartograph mono CF"
|
||||||
|
size: 11
|
||||||
|
|
||||||
|
cursor:
|
||||||
|
style:
|
||||||
|
shape: Underline
|
||||||
|
vi_mode_style:
|
||||||
|
shape: Block
|
35
discord/Gruvbox Light.theme.css
Normal file
35
discord/Gruvbox Light.theme.css
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
/**
|
||||||
|
* @name Gruvbox Light
|
||||||
|
* @description Discord Recolour - Gruvbox Light
|
||||||
|
* @author Fluffy Bean & mrHDash
|
||||||
|
* @version 1
|
||||||
|
*/
|
||||||
|
|
||||||
|
@import url(https://mwittrien.github.io/BetterDiscordAddons/Themes/DiscordRecolor/DiscordRecolor.css);
|
||||||
|
|
||||||
|
:root {
|
||||||
|
--font: Whitney, Helvetica Neue, Helvetica, Arial, sans-serif; /* General Font */
|
||||||
|
--settingsicons: 1; /* Use Settings Icons - Settings: 1 yes, 0 no */
|
||||||
|
|
||||||
|
--accentcolor: 7,102,120;
|
||||||
|
--accentcolor2: 177,98,134;
|
||||||
|
--linkcolor: 69,133,136;
|
||||||
|
--mentioncolor: 215,153,33;
|
||||||
|
--successcolor: 152,151,26;
|
||||||
|
--warningcolor: 212,94,14;
|
||||||
|
--dangercolor: 204,36,26;
|
||||||
|
|
||||||
|
--textbrightest: 40,40,40;
|
||||||
|
--textbrighter: 60,56,54;
|
||||||
|
--textbright: 80,73,69;
|
||||||
|
--textdark: 102,92,84;
|
||||||
|
--textdarker: 124,111,100;
|
||||||
|
--textdarkest: 146,131,116;
|
||||||
|
|
||||||
|
--backgroundaccent: 168,153,132;
|
||||||
|
--backgroundprimary: 189,174,147;
|
||||||
|
--backgroundsecondary: 213,196,161;
|
||||||
|
--backgroundsecondaryalt: 235,219,177;
|
||||||
|
--backgroundtertiary: 251,241,199;
|
||||||
|
--backgroundfloating: 249,245,215;
|
||||||
|
}
|
35
discord/Gruvbox.theme.css
Normal file
35
discord/Gruvbox.theme.css
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
/**
|
||||||
|
* @name Gruvbox
|
||||||
|
* @description Discord Recolour - Gruvbox
|
||||||
|
* @author Fluffy Bean & mrHDash
|
||||||
|
* @version 1
|
||||||
|
*/
|
||||||
|
|
||||||
|
@import url(https://mwittrien.github.io/BetterDiscordAddons/Themes/DiscordRecolor/DiscordRecolor.css);
|
||||||
|
|
||||||
|
:root {
|
||||||
|
--font: Whitney, Helvetica Neue, Helvetica, Arial, sans-serif; /* General Font */
|
||||||
|
--settingsicons: 1; /* Use Settings Icons - Settings: 1 yes, 0 no */
|
||||||
|
|
||||||
|
--accentcolor: 69,133,136;
|
||||||
|
--accentcolor2: 211,134,155;
|
||||||
|
--linkcolor: 131,165,152;
|
||||||
|
--mentioncolor: 250,189,47;
|
||||||
|
--successcolor: 184,187,38;
|
||||||
|
--warningcolor: 254,128,25;
|
||||||
|
--dangercolor: 251,73,52;
|
||||||
|
|
||||||
|
--textbrightest: 251,241,199;
|
||||||
|
--textbrighter: 235,219,178;
|
||||||
|
--textbright: 213,196,161;
|
||||||
|
--textdark: 189,174,147;
|
||||||
|
--textdarker: 168,153,132;
|
||||||
|
--textdarkest: 146,131,116;
|
||||||
|
|
||||||
|
--backgroundaccent: 124,111,100;
|
||||||
|
--backgroundprimary: 102,92,84;
|
||||||
|
--backgroundsecondary: 80,73,69;
|
||||||
|
--backgroundsecondaryalt: 60,56,54;
|
||||||
|
--backgroundtertiary: 40,40,40;
|
||||||
|
--backgroundfloating: 29,32,33;
|
||||||
|
}
|
34
discord/Paradise.theme.css
Normal file
34
discord/Paradise.theme.css
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
/**
|
||||||
|
* @name Paradise
|
||||||
|
* @description Discord Recolour - Paradise
|
||||||
|
* @author Fluffy Bean
|
||||||
|
* @version 1.1
|
||||||
|
*/
|
||||||
|
|
||||||
|
@import url(https://mwittrien.github.io/BetterDiscordAddons/Themes/DiscordRecolor/DiscordRecolor.css);
|
||||||
|
|
||||||
|
:root {
|
||||||
|
--font: Whitney, Helvetica Neue, Helvetica, Arial, sans-serif; /* General Font */
|
||||||
|
--settingsicons: 1; /* Use Settings Icons - Settings: 1 yes, 0 no */
|
||||||
|
|
||||||
|
--accentcolor: 140,151,125;
|
||||||
|
--accentcolor2: 140,151,125;
|
||||||
|
--linkcolor: 140,151,125;
|
||||||
|
--mentioncolor: 140,151,125;
|
||||||
|
--successcolor: 140,151,125;
|
||||||
|
--warningcolor: 217,178,140;
|
||||||
|
--dangercolor: 182,100,103;
|
||||||
|
|
||||||
|
--textbrightest: 232,227,227;
|
||||||
|
--textbrighter: 232,227,227;
|
||||||
|
--textbright: 192,187,187;
|
||||||
|
--textdark: 172,167,167;
|
||||||
|
--textdarker: 152,147,147;
|
||||||
|
--textdarkest: 132,127,127;
|
||||||
|
|
||||||
|
--backgroundaccent: 30,30,30;
|
||||||
|
--backgroundprimary: 21,21,21;
|
||||||
|
--backgroundsecondary: 21,21,21;
|
||||||
|
--backgroundsecondaryalt: 21,21,21;
|
||||||
|
--backgroundtertiary: 21,21,21;
|
||||||
|
--backgroundfloating: 21,21,21;
|
273
polybar/config.ini
Normal file
273
polybar/config.ini
Normal file
|
@ -0,0 +1,273 @@
|
||||||
|
;;_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
|
||||||
|
;;
|
||||||
|
;;
|
||||||
|
;; ██████╗ ██████╗ ██╗ ██╗ ██╗██████╗ █████╗ ██████╗
|
||||||
|
;; ██╔══██╗██╔═══██╗██║ ╚██╗ ██╔╝██╔══██╗██╔══██╗██╔══██╗
|
||||||
|
;; ██████╔╝██║ ██║██║ ╚████╔╝ ██████╔╝███████║██████╔╝
|
||||||
|
;; ██╔═══╝ ██║ ██║██║ ╚██╔╝ ██╔══██╗██╔══██║██╔══██╗
|
||||||
|
;; ██║ ╚██████╔╝███████╗██║ ██████╔╝██║ ██║██║ ██║
|
||||||
|
;; ╚═╝ ╚═════╝ ╚══════╝╚═╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝
|
||||||
|
;;
|
||||||
|
;; Fluffys Config
|
||||||
|
;; UwU
|
||||||
|
;;
|
||||||
|
;;_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
|
||||||
|
|
||||||
|
|
||||||
|
;;_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
|
||||||
|
;; COLOURS
|
||||||
|
;;_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
|
||||||
|
[colors]
|
||||||
|
|
||||||
|
;; GRUVBOX THEME
|
||||||
|
;background = #00000000
|
||||||
|
;sepback = #1d2021
|
||||||
|
;modback= #282828
|
||||||
|
;foreground = #ebdbb2
|
||||||
|
;menucolour = #ebdbb2
|
||||||
|
|
||||||
|
;; PARADICE THEME
|
||||||
|
background = #00000000
|
||||||
|
sepback = #000000
|
||||||
|
;sepback = #E8E3E3
|
||||||
|
modback= #151515
|
||||||
|
foreground = #E8E3E3
|
||||||
|
menucolour = #8C977D
|
||||||
|
|
||||||
|
[bar/fluffy]
|
||||||
|
width = 100%
|
||||||
|
height = 31
|
||||||
|
fixed-center = true
|
||||||
|
|
||||||
|
;; BAR ON TOP
|
||||||
|
;bottom = false
|
||||||
|
;border-top-size = 8
|
||||||
|
|
||||||
|
;; BAR ON BOTTOM (sussy)
|
||||||
|
bottom = true
|
||||||
|
border-bottom-size = 8
|
||||||
|
|
||||||
|
border-left-size = 8
|
||||||
|
border-right-size = 8
|
||||||
|
|
||||||
|
padding = 0
|
||||||
|
module-margin-left = 0
|
||||||
|
module-margin-right = 0
|
||||||
|
|
||||||
|
cursor-click = pointer
|
||||||
|
cursor-scroll = ns-resize
|
||||||
|
|
||||||
|
background = ${colors.background}
|
||||||
|
foreground = ${colors.foreground}
|
||||||
|
|
||||||
|
;;_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
|
||||||
|
;; FONTS
|
||||||
|
;;_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
|
||||||
|
font-0 = Rubik:size=11:weight=Medium;2
|
||||||
|
;font-0 = Fira Code:size=11:weight=Bold;2
|
||||||
|
font-1 = Iosevka Nerd Font:size=18;4
|
||||||
|
font-2 = Iosevka Nerd Font:size=13;3
|
||||||
|
|
||||||
|
|
||||||
|
;;_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
|
||||||
|
;; BAR SETUP
|
||||||
|
;;_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
|
||||||
|
modules-left = dateL date dateR space timeL time timeR
|
||||||
|
modules-center = spotifyL spotify spotifyR
|
||||||
|
modules-right = volumeL volume volumeR space1 powerL power powerR
|
||||||
|
|
||||||
|
|
||||||
|
;;_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
|
||||||
|
;; SPACE
|
||||||
|
;;_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
|
||||||
|
[module/space]
|
||||||
|
type = custom/text
|
||||||
|
content-background = ${colors.sepback}
|
||||||
|
content = " "
|
||||||
|
|
||||||
|
[module/space1]
|
||||||
|
type = custom/text
|
||||||
|
content-background = ${colors.sepback}
|
||||||
|
content = " "
|
||||||
|
|
||||||
|
;;_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
|
||||||
|
;; ROUNDY ROUNDY
|
||||||
|
;;_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
|
||||||
|
;; LEFT
|
||||||
|
;;_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
|
||||||
|
[module/dateL]
|
||||||
|
type = custom/text
|
||||||
|
content-background = ${colors.background}
|
||||||
|
content-foreground = ${colors.modback}
|
||||||
|
content = "%{T2}%{T-}"
|
||||||
|
|
||||||
|
[module/timeL]
|
||||||
|
type = custom/text
|
||||||
|
content-background = ${colors.sepback}
|
||||||
|
content-foreground = ${colors.modback}
|
||||||
|
content = "%{T2}%{T-}"
|
||||||
|
|
||||||
|
[module/spotifyL]
|
||||||
|
type = custom/text
|
||||||
|
content-background = ${colors.background}
|
||||||
|
content-foreground = ${colors.modback}
|
||||||
|
content = "%{T2}%{T-}"
|
||||||
|
|
||||||
|
[module/volumeL]
|
||||||
|
type = custom/text
|
||||||
|
content-background = ${colors.background}
|
||||||
|
content-foreground = ${colors.modback}
|
||||||
|
content = "%{T2}%{T-}"
|
||||||
|
|
||||||
|
[module/powerL]
|
||||||
|
type = custom/text
|
||||||
|
content-background = ${colors.sepback}
|
||||||
|
content-foreground = ${colors.modback}
|
||||||
|
content = "%{T2}%{T-}"
|
||||||
|
|
||||||
|
;;_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
|
||||||
|
;; RIGHT
|
||||||
|
;;_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
|
||||||
|
[module/dateR]
|
||||||
|
type = custom/text
|
||||||
|
content-background = ${colors.sepback}
|
||||||
|
content-foreground = ${colors.modback}
|
||||||
|
content = "%{T2}%{T-}"
|
||||||
|
|
||||||
|
[module/timeR]
|
||||||
|
type = custom/text
|
||||||
|
content-background = ${colors.background}
|
||||||
|
content-foreground = ${colors.modback}
|
||||||
|
content = "%{T2}%{T-}"
|
||||||
|
|
||||||
|
[module/spotifyR]
|
||||||
|
type = custom/text
|
||||||
|
content-background = ${colors.background}
|
||||||
|
content-foreground = ${colors.modback}
|
||||||
|
content = "%{T2}%{T-}"
|
||||||
|
|
||||||
|
[module/volumeR]
|
||||||
|
type = custom/text
|
||||||
|
content-background = ${colors.sepback}
|
||||||
|
content-foreground = ${colors.modback}
|
||||||
|
content = "%{T2}%{T-}"
|
||||||
|
|
||||||
|
[module/left3]
|
||||||
|
type = custom/text
|
||||||
|
content-background = ${colors.background}
|
||||||
|
content-foreground = ${colors.modback}
|
||||||
|
content = "%{T2}%{T-}"
|
||||||
|
|
||||||
|
[module/powerR]
|
||||||
|
type = custom/text
|
||||||
|
content-background = ${colors.background}
|
||||||
|
content-foreground = ${colors.modback}
|
||||||
|
content = "%{T2}%{T-}"
|
||||||
|
|
||||||
|
|
||||||
|
;;_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
|
||||||
|
;; DATE
|
||||||
|
;;_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
|
||||||
|
[module/date]
|
||||||
|
type = internal/date
|
||||||
|
interval = 5
|
||||||
|
|
||||||
|
date = "%a, %d %b"
|
||||||
|
|
||||||
|
label = "%date%"
|
||||||
|
|
||||||
|
format-background = ${colors.modback}
|
||||||
|
;;_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
|
||||||
|
;; TIME
|
||||||
|
;;_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
|
||||||
|
[module/time]
|
||||||
|
type = internal/date
|
||||||
|
interval = 5
|
||||||
|
|
||||||
|
time = "%H:%M"
|
||||||
|
|
||||||
|
label = "%time%"
|
||||||
|
|
||||||
|
format-background = ${colors.modback}
|
||||||
|
|
||||||
|
|
||||||
|
;;_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
|
||||||
|
;; SPOTIFY
|
||||||
|
;;_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
|
||||||
|
[module/spotify]
|
||||||
|
type = custom/script
|
||||||
|
interval = 1
|
||||||
|
|
||||||
|
format = <label>
|
||||||
|
format-background = ${colors.modback}
|
||||||
|
|
||||||
|
exec = python /home/fluffy/.config/polybar/scripts -f "{song} | {artist}" -t 69
|
||||||
|
|
||||||
|
click-left = playerctl --player=spotify play-pause
|
||||||
|
scroll-up = playerctl --player=spotify next
|
||||||
|
scroll-down = playerctl --player=spotify previous
|
||||||
|
|
||||||
|
|
||||||
|
;;_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
|
||||||
|
;; VOLUME
|
||||||
|
;;_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
|
||||||
|
[module/volume]
|
||||||
|
type = internal/pulseaudio
|
||||||
|
|
||||||
|
format-volume = <label-volume>
|
||||||
|
label-volume = Volume | %percentage%%
|
||||||
|
;label-volume = %{T3}%{T-} %percentage%%
|
||||||
|
;label-volume = %percentage%%
|
||||||
|
|
||||||
|
label-volume-foreground = ${root.foreground}
|
||||||
|
format-volume-background = ${colors.modback}
|
||||||
|
|
||||||
|
label-muted = Muted
|
||||||
|
label-muted-foreground = #666
|
||||||
|
label-muted-background = ${colors.modback}
|
||||||
|
|
||||||
|
|
||||||
|
;;_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
|
||||||
|
;; OLD POWER MENU
|
||||||
|
;;_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
|
||||||
|
[module/menu]
|
||||||
|
type = custom/menu
|
||||||
|
expand-right = true
|
||||||
|
|
||||||
|
menu-0-0 = Settings
|
||||||
|
menu-0-0-exec = "~/.config/rofi/powermenu.sh" &
|
||||||
|
menu-0-1 = Reboot
|
||||||
|
menu-0-1-exec = #menu.open.2
|
||||||
|
menu-0-2 = Shutdown
|
||||||
|
menu-0-2-exec = #menu.open.1
|
||||||
|
|
||||||
|
menu-1-0 = Shutdown
|
||||||
|
menu-1-0-exec = systemctl poweroff
|
||||||
|
menu-2-0 = Reboot
|
||||||
|
menu-2-0-exec = systemctl reboot
|
||||||
|
|
||||||
|
format = <label-toggle> <menu>
|
||||||
|
format-background = ${colors.modback}
|
||||||
|
|
||||||
|
label-open = ☰
|
||||||
|
label-close = Close
|
||||||
|
|
||||||
|
label-separator = " | "
|
||||||
|
|
||||||
|
|
||||||
|
;;_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
|
||||||
|
;; ROFI POWER MENU
|
||||||
|
;;_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
|
||||||
|
[module/power]
|
||||||
|
type = custom/script
|
||||||
|
exec = echo " "
|
||||||
|
format-background = ${colors.modback}
|
||||||
|
format-prefix =" ☰"
|
||||||
|
click-left = bash /home/fluffy/.config/polybar/scripts/powermenu.sh &
|
||||||
|
|
||||||
|
|
||||||
|
;;_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
|
||||||
|
;; OTHER
|
||||||
|
;;_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
|
||||||
|
[settings]
|
||||||
|
screenchange-reload = true
|
36
polybar/scripts/powermenu.sh
Normal file
36
polybar/scripts/powermenu.sh
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
## Author : Aditya Shakya
|
||||||
|
## Mail : adi1090x@gmail.com
|
||||||
|
## Github : @adi1090x
|
||||||
|
## Twitter : @adi1090x
|
||||||
|
|
||||||
|
uptime=$(uptime -p | sed -e 's/up //g')
|
||||||
|
rofi_command="rofi -theme ~/.config/rofi/power.rasi"
|
||||||
|
|
||||||
|
# Options
|
||||||
|
shutdown="Shutdown"
|
||||||
|
reboot="Restart"
|
||||||
|
suspend="Sleep"
|
||||||
|
settings="Settings"
|
||||||
|
|
||||||
|
# Variable passed to rofi
|
||||||
|
options="$reboot\n$shutdown\n$settings"
|
||||||
|
|
||||||
|
chosen="$(echo -e "$options" | $rofi_command -p "Uptime: $uptime" -dmenu -selected-row 0)"
|
||||||
|
case $chosen in
|
||||||
|
$shutdown)
|
||||||
|
systemctl poweroff
|
||||||
|
;;
|
||||||
|
$reboot)
|
||||||
|
systemctl reboot
|
||||||
|
;;
|
||||||
|
$suspend)
|
||||||
|
mpc -q pause
|
||||||
|
amixer set Master mute
|
||||||
|
systemctl suspend
|
||||||
|
;;
|
||||||
|
$settings)
|
||||||
|
gnome-control-center
|
||||||
|
;;
|
||||||
|
esac
|
15
rofi/colours/gruvbox.rasi
Normal file
15
rofi/colours/gruvbox.rasi
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
/* GRUVBOX THEME */
|
||||||
|
/* config for fluffys dots */
|
||||||
|
|
||||||
|
* {
|
||||||
|
bg: #282828;
|
||||||
|
bg2: #1d2021BF;
|
||||||
|
fg: #ebdbb2;
|
||||||
|
sd: #1d2021;
|
||||||
|
alt: #3c3836;
|
||||||
|
rad: 16px;
|
||||||
|
rad2: 8px;
|
||||||
|
|
||||||
|
background-color: @bg;
|
||||||
|
text-color: @fg;
|
||||||
|
}
|
16
rofi/colours/paradise.rasi
Normal file
16
rofi/colours/paradise.rasi
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
/* PARADISE THEME */
|
||||||
|
/* config for fluffys dots, */
|
||||||
|
/* colours by @Manas140 on GitHub */
|
||||||
|
|
||||||
|
* {
|
||||||
|
bg: #151515;
|
||||||
|
bg2: #15151500;
|
||||||
|
fg: #E8E3E3;
|
||||||
|
sd: #151515;
|
||||||
|
alt: #8C977D;
|
||||||
|
rad: 16px;
|
||||||
|
rad2: 8px;
|
||||||
|
|
||||||
|
background-color: @bg;
|
||||||
|
text-color: @fg;
|
||||||
|
}
|
91
rofi/config old.rasi
Normal file
91
rofi/config old.rasi
Normal file
|
@ -0,0 +1,91 @@
|
||||||
|
/* ==============================================
|
||||||
|
* Fluffys sussed up config
|
||||||
|
* Not all code is mine, well, most of it isn't
|
||||||
|
* Enjoy hell
|
||||||
|
* ==============================================*/
|
||||||
|
configuration {
|
||||||
|
modi: "drun";
|
||||||
|
display-drun: "";
|
||||||
|
font: "Rubik Medium 11";
|
||||||
|
}
|
||||||
|
|
||||||
|
@theme "/dev/null"
|
||||||
|
|
||||||
|
/* ==============================================
|
||||||
|
* COLOURS
|
||||||
|
* ==============================================*/
|
||||||
|
* {
|
||||||
|
bg: #282828;
|
||||||
|
fg: #ebdbb2;
|
||||||
|
sd: #1d2021;
|
||||||
|
al: #3c3836;
|
||||||
|
rad: 16px;
|
||||||
|
border-radius: @rad;
|
||||||
|
background-color: @bg;
|
||||||
|
text-color: @fg;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ==============================================
|
||||||
|
* WINDOW
|
||||||
|
* ==============================================*/
|
||||||
|
window {
|
||||||
|
border-radius: 16px;
|
||||||
|
location: north west;
|
||||||
|
width: 20%;
|
||||||
|
height: 100%;
|
||||||
|
spacing: 0;
|
||||||
|
orientation: horizontal;
|
||||||
|
children: [ box ];
|
||||||
|
margin: 47px 8px 8px 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ==============================================
|
||||||
|
* LAYOUT
|
||||||
|
* ==============================================*/
|
||||||
|
box {
|
||||||
|
padding: 0.75em;
|
||||||
|
spacing: 0.5em;
|
||||||
|
layout: vertical;
|
||||||
|
children: [ entry, listview ];
|
||||||
|
}
|
||||||
|
entry {
|
||||||
|
background-color: @sd;
|
||||||
|
placeholder: "Sniff...";
|
||||||
|
expand: false;
|
||||||
|
padding: 0.75em;
|
||||||
|
}
|
||||||
|
listview {
|
||||||
|
cycle: false;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ==============================================
|
||||||
|
* EXTRA STUFFS
|
||||||
|
* ==============================================*/
|
||||||
|
icon {
|
||||||
|
width: 110px;
|
||||||
|
expand: false;
|
||||||
|
padding: 50px;
|
||||||
|
margin: 0 116px;
|
||||||
|
background-image: url("sploot.jpg", height);
|
||||||
|
}
|
||||||
|
banner {
|
||||||
|
height: 110px;
|
||||||
|
expand: false;
|
||||||
|
padding: 0.75em;
|
||||||
|
margin: 0;
|
||||||
|
background-image: url("Red panda X Snepo.jpg", height);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ==============================================
|
||||||
|
* ELEMENTS
|
||||||
|
* ==============================================*/
|
||||||
|
element {
|
||||||
|
padding: 0.75em;
|
||||||
|
}
|
||||||
|
element selected {
|
||||||
|
background-color: @al;
|
||||||
|
}
|
||||||
|
element-text, element-icon {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
|
}
|
74
rofi/config.rasi
Normal file
74
rofi/config.rasi
Normal file
|
@ -0,0 +1,74 @@
|
||||||
|
/* ==============================================
|
||||||
|
* Fluffys sussed up config
|
||||||
|
* Not all code is mine, well, most of it isn't
|
||||||
|
* Enjoy hell
|
||||||
|
* ==============================================*/
|
||||||
|
configuration {
|
||||||
|
modi: "drun";
|
||||||
|
display-drun: "";
|
||||||
|
drun-display-format: "{name}";
|
||||||
|
font: "Rubik Medium 11";
|
||||||
|
timeout {
|
||||||
|
delay: 10;
|
||||||
|
action: "kb-cancel";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@theme "/dev/null"
|
||||||
|
|
||||||
|
/* ==============================================
|
||||||
|
* COLOURS
|
||||||
|
* ==============================================*/
|
||||||
|
@import "colours/paradise.rasi"
|
||||||
|
|
||||||
|
/* ==============================================
|
||||||
|
* ROFI WINDOW
|
||||||
|
* ==============================================*/
|
||||||
|
window {
|
||||||
|
fullscreen: true;
|
||||||
|
padding: 8px 80.8% 47px 8px;
|
||||||
|
background-color: @bg2;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ==============================================
|
||||||
|
* ELEMENTS
|
||||||
|
* ==============================================*/
|
||||||
|
mainbox {
|
||||||
|
children: [ inputbar, listview ];
|
||||||
|
spacing: 8px;
|
||||||
|
background-color: #0000;
|
||||||
|
}
|
||||||
|
|
||||||
|
inputbar {
|
||||||
|
children: [ entry ];
|
||||||
|
padding: 16px 16px 6em;
|
||||||
|
border-radius: @rad;
|
||||||
|
background-image: url("titleBarImages/sploot.jpg", width);
|
||||||
|
text-color: @fg;
|
||||||
|
}
|
||||||
|
|
||||||
|
entry {
|
||||||
|
padding: 0.75em;
|
||||||
|
placeholder: "Sniff...";
|
||||||
|
border-radius: @rad2;
|
||||||
|
background-color: @sd;
|
||||||
|
}
|
||||||
|
|
||||||
|
listview {
|
||||||
|
layout: vertical;
|
||||||
|
cycle: false;
|
||||||
|
padding: 16px;
|
||||||
|
border-radius: @rad;
|
||||||
|
}
|
||||||
|
|
||||||
|
element {
|
||||||
|
padding: 0.75em;
|
||||||
|
border-radius: @rad2;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ==============================================
|
||||||
|
* EXTRA STUFFS
|
||||||
|
* ==============================================*/
|
||||||
|
element selected, element-text selected { background-color: @alt; }
|
||||||
|
listview, element, element-selected, element-text { cursor: pointer; }
|
||||||
|
entry { cursor: text; }
|
70
rofi/power.rasi
Normal file
70
rofi/power.rasi
Normal file
|
@ -0,0 +1,70 @@
|
||||||
|
/* ==============================================
|
||||||
|
* Fluffys sussed up config
|
||||||
|
* Not all code is mine, well, most of it isn't
|
||||||
|
* Enjoy hell
|
||||||
|
* ==============================================*/
|
||||||
|
configuration {
|
||||||
|
display-drun: "";
|
||||||
|
drun-display-format: "{name}";
|
||||||
|
font: "Rubik Medium 11";
|
||||||
|
timeout {
|
||||||
|
delay: 10;
|
||||||
|
action: "kb-cancel";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@theme "/dev/null"
|
||||||
|
|
||||||
|
/* ==============================================
|
||||||
|
* COLOURS
|
||||||
|
* ==============================================*/
|
||||||
|
@import "colours/paradise.rasi"
|
||||||
|
|
||||||
|
/* ==============================================
|
||||||
|
* ROFI WINDOW
|
||||||
|
* ==============================================*/
|
||||||
|
window {
|
||||||
|
fullscreen: true;
|
||||||
|
padding: 75.3% 8px 47px 86.1%;
|
||||||
|
/*padding: 8px 80.8% 8px 8px;*/
|
||||||
|
background-color: @bg2;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ==============================================
|
||||||
|
* ELEMENTS
|
||||||
|
* ==============================================*/
|
||||||
|
mainbox {
|
||||||
|
children: [ inputbar, listview ];
|
||||||
|
spacing: 8px;
|
||||||
|
background-color: #0000;
|
||||||
|
}
|
||||||
|
|
||||||
|
inputbar {
|
||||||
|
children: [ prompt ];
|
||||||
|
padding: 0.75em;
|
||||||
|
border-radius: @rad;
|
||||||
|
background-color: @sd;
|
||||||
|
}
|
||||||
|
|
||||||
|
prompt {
|
||||||
|
enabled: true;
|
||||||
|
}
|
||||||
|
|
||||||
|
listview {
|
||||||
|
layout: vertical;
|
||||||
|
cycle: false;
|
||||||
|
padding: 16px;
|
||||||
|
border-radius: @rad;
|
||||||
|
}
|
||||||
|
|
||||||
|
element {
|
||||||
|
padding: 0.75em;
|
||||||
|
border-radius: @rad2;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ==============================================
|
||||||
|
* EXTRA STUFFS
|
||||||
|
* ==============================================*/
|
||||||
|
element selected, element-text selected { background-color: @alt; }
|
||||||
|
listview, element, element-selected, element-text { cursor: pointer; }
|
||||||
|
entry { cursor: text; }
|
BIN
rofi/titleBarImages/Red panda X Snepo.jpg
Normal file
BIN
rofi/titleBarImages/Red panda X Snepo.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 192 KiB |
BIN
rofi/titleBarImages/sploot.jpg
Normal file
BIN
rofi/titleBarImages/sploot.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 381 KiB |
119
spotify/colours.css
Normal file
119
spotify/colours.css
Normal file
|
@ -0,0 +1,119 @@
|
||||||
|
/*
|
||||||
|
* _ _
|
||||||
|
* __ ____ _ _ __ _ __ (_)_ __ __ _| |
|
||||||
|
* \ \ /\ / / _` | '__| '_ \| | '_ \ / _` | |
|
||||||
|
* \ V V / (_| | | | | | | | | | | (_| |_|
|
||||||
|
* \_/\_/ \__,_|_| |_| |_|_|_| |_|\__, (_)
|
||||||
|
* |___/
|
||||||
|
* This will not work on its own, you NEED spicetify
|
||||||
|
* WITH the dribbblish theme installed
|
||||||
|
* AND custom CSS plugin, then and ONLY THEN can you pate
|
||||||
|
* this into the custom CSS section.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* GRUVBOX THEME */
|
||||||
|
/*:root {
|
||||||
|
--spice-text: #fbf1c7;
|
||||||
|
--spice-subtext: #d5c4a1;
|
||||||
|
--spice-sidebar-text: #fbf1c7;
|
||||||
|
--spice-main: #504945;
|
||||||
|
--spice-sidebar: #292828;
|
||||||
|
--spice-player: #665C54;
|
||||||
|
--spice-card: #3c3836;
|
||||||
|
--spice-shadow: #202020;
|
||||||
|
--spice-selected-row: #d5c4a1;
|
||||||
|
--spice-button: #a89984;
|
||||||
|
--spice-button-active: #d65d0e;
|
||||||
|
--spice-button-disabled: #bdae93;
|
||||||
|
--spice-tab-active: #fb4934;
|
||||||
|
--spice-notification: #8ec07c;
|
||||||
|
--spice-notification-error: #d79921;
|
||||||
|
--spice-misc: #BFBFBF;
|
||||||
|
}
|
||||||
|
|
||||||
|
remove if you don't like the roundness, and edit this line out if you want to use the gruvbox colours
|
||||||
|
|
||||||
|
.main-trackList-trackListHeaderStuck.main-trackList-trackListHeader {
|
||||||
|
border-bottom: 0;
|
||||||
|
background-color: #504945;
|
||||||
|
}
|
||||||
|
|
||||||
|
.iB16LxoPzDeVZo8zPhPQ,
|
||||||
|
.rezqw3Q4OEPB1m4rmwfw{
|
||||||
|
background-color: #504945;
|
||||||
|
}
|
||||||
|
|
||||||
|
.main-card-card{
|
||||||
|
background: #504945;
|
||||||
|
border-radius: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
/* PARADICE THEME */
|
||||||
|
:root {
|
||||||
|
--spice-text: #e3e3e3;
|
||||||
|
--spice-subtext: #e3e3e3;
|
||||||
|
--spice-sidebar-text: #e3e3e3;
|
||||||
|
--spice-main: #151515;
|
||||||
|
--spice-sidebar: #252525;
|
||||||
|
--spice-player: #665C54;
|
||||||
|
--spice-card: #3c3836;
|
||||||
|
--spice-shadow: #202020;
|
||||||
|
--spice-selected-row: #d5c4a1;
|
||||||
|
--spice-button: #e8e3e3;
|
||||||
|
--spice-button-active: #d65d0e;
|
||||||
|
--spice-button-disabled: #bdae93;
|
||||||
|
--spice-tab-active: #fb4934;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* remove if you don't like the roundness */
|
||||||
|
.main-trackList-trackListHeaderStuck.main-trackList-trackListHeader {
|
||||||
|
border-bottom: 0;
|
||||||
|
background-color: #151515;
|
||||||
|
}
|
||||||
|
|
||||||
|
.iB16LxoPzDeVZo8zPhPQ,
|
||||||
|
.rezqw3Q4OEPB1m4rmwfw{
|
||||||
|
background-color: #151515;
|
||||||
|
}
|
||||||
|
|
||||||
|
.main-card-card{
|
||||||
|
background: #151515;
|
||||||
|
border-radius: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* GENERAL STUFF */
|
||||||
|
/* remove if you don't like the extra round-ness */
|
||||||
|
.main-trackList-trackListRow {
|
||||||
|
border-radius: 16px;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.main-trackList-trackListHeaderRow {
|
||||||
|
border-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.main-heroCard-card {
|
||||||
|
border-radius: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.main-coverSlotExpanded-container{
|
||||||
|
border-radius: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.main-contextMenu-menu{
|
||||||
|
border-radius: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.main-image-image,
|
||||||
|
.main-trackList-rowImage{
|
||||||
|
border-radius: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.JdlKTdpMquftpMwwegZo,
|
||||||
|
.CmkY1Ag0tJDfnFXbGgju{
|
||||||
|
border-radius: 16px;
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue