-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor to group setup into packages
- Loading branch information
Showing
37 changed files
with
776 additions
and
391 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,6 @@ | |
files/git | ||
packer_compiled.lua | ||
todo.md | ||
bin.old | ||
pacman.pkgs | ||
aur.pkgs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
{ | ||
"label" : "lock", | ||
"action" : "swaylock", | ||
"text" : "Lock", | ||
"keybind" : "l" | ||
} | ||
{ | ||
"label" : "hibernate", | ||
"action" : "systemctl hibernate", | ||
"text" : "Hibernate", | ||
"keybind" : "h" | ||
} | ||
{ | ||
"label" : "logout", | ||
"action" : "loginctl terminate-user $USER", | ||
"text" : "Logout", | ||
"keybind" : "e" | ||
} | ||
{ | ||
"label" : "shutdown", | ||
"action" : "systemctl poweroff", | ||
"text" : "Shutdown", | ||
"keybind" : "s" | ||
} | ||
{ | ||
"label" : "suspend", | ||
"action" : "systemctl suspend", | ||
"text" : "Suspend", | ||
"keybind" : "u" | ||
} | ||
{ | ||
"label" : "reboot", | ||
"action" : "systemctl reboot", | ||
"text" : "Reboot", | ||
"keybind" : "r" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
/* | ||
██╗ ██╗██╗ ██████╗ ██████╗ ██████╗ ██╗ ██╗████████╗ | ||
██║ ██║██║ ██╔═══██╗██╔════╝ ██╔═══██╗██║ ██║╚══██╔══╝ | ||
██║ █╗ ██║██║ ██║ ██║██║ ███╗██║ ██║██║ ██║ ██║ | ||
██║███╗██║██║ ██║ ██║██║ ██║██║ ██║██║ ██║ ██║ | ||
╚███╔███╔╝███████╗╚██████╔╝╚██████╔╝╚██████╔╝╚██████╔╝ ██║ | ||
╚══╝╚══╝ ╚══════╝ ╚═════╝ ╚═════╝ ╚═════╝ ╚═════╝ ╚═╝ | ||
WLogout Config File by Arfan Zubi | ||
*/ | ||
|
||
window { | ||
color: #D3C6AA; | ||
background-color: rgba(45, 53, 59, 0.7); | ||
font-family: 'FiraCode Nerd Font', sans-serif; | ||
font-weight: bold; | ||
font-size: 20px; | ||
} | ||
|
||
button { | ||
margin: 5px; | ||
color: #D3C6AA; | ||
background-color: #272E33; | ||
background-size: 20%; | ||
background-repeat: no-repeat; | ||
background-position: center; | ||
border: 5px solid #3D484D; | ||
border-radius: 15px; | ||
box-shadow: none; | ||
text-shadow: none; | ||
opacity: 0.9; | ||
transition: background-color 0.2s ease-in-out; | ||
} | ||
|
||
button:focus, button:active, button:hover { | ||
color: #2D353B; | ||
background-color: #A7C080; | ||
text-shadow: none; | ||
} | ||
|
||
#lock { | ||
background-image: image(url("./icons/lock.png")); | ||
} | ||
#lock:hover, #lock:focus { | ||
background-image: image(url("./icons/lock-hover.png")); | ||
} | ||
|
||
#logout { | ||
background-image: image(url("./icons/logout.png")); | ||
} | ||
#logout:hover, #logout:focus { | ||
background-image: image(url("./icons/logout-hover.png")); | ||
} | ||
|
||
#suspend { | ||
background-image: image(url("./icons/suspend.png")); | ||
} | ||
#suspend:hover, #suspend:focus { | ||
background-image: image(url("./icons/suspend-hover.png")); | ||
} | ||
|
||
#hibernate { | ||
background-image: image(url("./icons/hibernate.png")); | ||
} | ||
#hibernate:hover, #hibernate:focus { | ||
background-image: image(url("./icons/hibernate-hover.png")); | ||
} | ||
|
||
#shutdown { | ||
background-image: image(url("./icons/shutdown.png")); | ||
} | ||
#shutdown:hover, #shutdown:focus { | ||
background-image: image(url("./icons/shutdown-hover.png")); | ||
} | ||
|
||
#reboot { | ||
background-image: image(url("./icons/reboot.png")); | ||
} | ||
#reboot:hover, #reboot:focus { | ||
background-image: image(url("./icons/reboot-hover.png")); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.